@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;450;500;600;700&display=swap");

/* =========================================================
   RCrick — Roofing & Scaffolding
   Ultra-modern design system
   ========================================================= */

/* ----------  Tokens  ---------- */
:root {
	/* brand */
	--amber: #cc9900;
	--amber-2: #b38600;
	--amber-soft: #e6c24d;
	--grad-amber: linear-gradient(
		135deg,
		#e0b84d 0%,
		#cc9900 55%,
		#a67a00 100%
	);

	/* neutrals */
	--ink: #000000;
	--ink-2: #0d0d0d;
	--ink-3: #1a1a1a;
	--navy: #262626;
	--slate: #404040;

	--bg: #f5f5f5;
	--bg-2: #ebebeb;
	--surface: #ffffff;
	--text: #1a1a1a;
	--muted: #404040;
	--line: rgba(0, 0, 0, 0.08);
	--line-2: rgba(0, 0, 0, 0.12);

	/* cool accent for freshness */
	--cool: #6699ff;
	--cool-2: #4d88ff;

	--radius-xl: 30px;
	--radius-lg: 22px;
	--radius: 16px;
	--radius-sm: 11px;

	--shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.06);
	--shadow-sm: 0 6px 18px -8px rgba(0, 0, 0, 0.18);
	--shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.35);
	--shadow-lg: 0 40px 90px -30px rgba(0, 0, 0, 0.5);
	--glow: 0 20px 60px -18px rgba(204, 153, 0, 0.55);

	--container: 1240px;
	--font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-display: "Sora", "Inter", system-ui, sans-serif;
	--font-logo: "Times New Roman", Times, Georgia, serif;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ----------  Reset  ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
	max-width: 100%;
}

body {
	font-family: var(--font);
	color: var(--text);
	background: var(--bg);
	line-height: 1.7;
	font-size: 1rem;
	overflow-x: hidden;
	max-width: 100%;
	position: relative;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

/* subtle page grain / mesh */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(
			60vw 60vw at 85% -10%,
			rgba(204, 153, 0, 0.1),
			transparent 60%
		),
		radial-gradient(
			45vw 45vw at -10% 20%,
			rgba(102, 153, 255, 0.09),
			transparent 60%
		);
	pointer-events: none;
}

img {
	max-width: 100%;
	display: block;
}
iframe {
	max-width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
ul {
	list-style: none;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	line-height: 1.06;
	color: var(--navy);
	font-weight: 700;
	letter-spacing: -0.02em;
}
h1 {
	font-size: clamp(2.6rem, 6.2vw, 4.6rem);
	font-weight: 800;
}
h2 {
	font-size: clamp(2rem, 4.2vw, 3.1rem);
	font-weight: 700;
}
h3 {
	font-size: 1.3rem;
	letter-spacing: -0.01em;
}
p {
	margin-bottom: 1rem;
}
p:last-child {
	margin-bottom: 0;
}

::selection {
	background: var(--amber);
	color: var(--ink);
}

/* custom scrollbar */
* {
	scrollbar-width: thin;
	scrollbar-color: var(--amber-2) transparent;
}
*::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
*::-webkit-scrollbar-thumb {
	background: linear-gradient(var(--amber-2), var(--amber));
	border-radius: 20px;
	border: 2px solid var(--bg);
}

/* gradient text helper */
.grad-text {
	background: var(--grad-amber);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* ----------  Layout  ---------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.section {
	padding: clamp(4rem, 9vw, 7.5rem) 0;
	position: relative;
}
.section--alt {
	background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
.section--dark {
	background: radial-gradient(
		120% 120% at 80% 0%,
		var(--ink-3),
		var(--ink) 60%
	);
	color: #b3b3b3c9;
	overflow: hidden;
}
.section--dark h2,
.section--dark h3 {
	color: #fff;
}
.section--dark::before {
	content: "";
	position: absolute;
	width: 40rem;
	height: 40rem;
	top: -14rem;
	right: -10rem;
	background: radial-gradient(
		circle,
		rgba(204, 153, 0, 0.22),
		transparent 60%
	);
	filter: blur(20px);
	pointer-events: none;
}

.section-head {
	max-width: 760px;
	margin: 0 auto clamp(2.5rem, 5vw, 4rem);
	text-align: center;
}
.section-head .eyebrow {
	margin-bottom: 1.1rem;
}
.section-head h2 {
	margin-bottom: 1rem;
}
.section-head p {
	color: var(--muted);
	font-size: 1.12rem;
}
.section--dark .section-head p {
	color: #a3a3a3;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--navy);
	padding: 0.45rem 0.95rem;
	background: var(--surface);
	border: 1px solid var(--line-2);
	border-radius: 100px;
	box-shadow: var(--shadow-xs);
}
.eyebrow::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--grad-amber);
	box-shadow: 0 0 0 4px rgba(204, 153, 0, 0.16);
}
.section--dark .eyebrow {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.text-center {
	text-align: center;
}

/* ----------  Buttons  ---------- */
.btn {
	--btn-bg: var(--grad-amber);
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.97rem;
	padding: 0.95rem 1.8rem;
	border-radius: 100px;
	border: 1px solid transparent;
	cursor: pointer;
	overflow: hidden;
	isolation: isolate;
	transition:
		transform 0.35s var(--spring),
		box-shadow 0.35s var(--ease),
		background 0.3s var(--ease),
		color 0.3s var(--ease);
	white-space: nowrap;
}
.btn::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(
		120deg,
		transparent 30%,
		rgba(255, 255, 255, 0.5),
		transparent 70%
	);
	transform: translateX(-120%);
	transition: transform 0.6s var(--ease);
}
.btn:hover {
	transform: translateY(-3px);
}
.btn:hover::after {
	transform: translateX(120%);
}
.btn--primary {
	background: var(--grad-amber);
	color: var(--ink);
	box-shadow: var(--glow);
}
.btn--primary:hover {
	box-shadow: 0 26px 70px -18px rgba(204, 153, 0, 0.7);
}
.btn--ghost {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
	backdrop-filter: blur(6px);
}
.btn--ghost:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline {
	background: var(--surface);
	border-color: var(--line-2);
	color: var(--navy);
	box-shadow: var(--shadow-sm);
}
.btn--outline:hover {
	border-color: var(--amber);
	color: var(--amber-2);
}
.btn--lg {
	padding: 1.1rem 2.2rem;
	font-size: 1.05rem;
}

/* ----------  Header / Nav  ---------- */
@keyframes navSlide {
	to {
		background-position: 200% 0;
	}
}

/* scroll progress bar */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0;
	background: var(--grad-amber);
	box-shadow: 0 0 14px rgba(204, 153, 0, 0.8);
	border-radius: 0 4px 4px 0;
	z-index: 200;
	transition: width 0.1s linear;
	pointer-events: none;
}

.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(18px) saturate(180%);
	border-bottom: 1px solid var(--line-2);
	transition:
		box-shadow 0.35s var(--ease),
		background 0.35s var(--ease);
}
/* animated gradient underline across the full width */
.header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: linear-gradient(
		90deg,
		#cc9900,
		#e0b84d,
		#6699ff,
		#4d88ff,
		#cc9900
	);
	background-size: 200% 100%;
	animation: navSlide 6s linear infinite;
	opacity: 0.7;
	transition: opacity 0.4s var(--ease);
	pointer-events: none;
}
.header.scrolled {
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 12px 34px -16px rgba(0, 0, 0, 0.3);
}
.header.scrolled::after {
	opacity: 1;
}
.header .nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	height: 74px;
}

.logo {
	font-family: var(--font-logo);
	font-size: 1.95rem;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: 0.3px;
	line-height: 1;
}
.logo span {
	background: var(--grad-amber);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.logo small {
	display: block;
	font-family: var(--font-display);
	font-size: 0.54rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 4px;
}
.logo__img {
	display: block;
	height: 42px;
	width: auto;
	max-width: min(240px, 58vw);
	object-fit: contain;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin-left: auto;
	margin-right: 0.4rem;
}
.nav-links a {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.94rem;
	color: var(--navy);
	padding: 0.55rem 1rem;
	border-radius: 100px;
	transition:
		background 0.25s var(--ease),
		color 0.25s var(--ease);
}
.nav-links a:hover {
	background: rgba(0, 0, 0, 0.06);
	color: var(--ink);
}
.nav-links a.active {
	color: var(--ink);
	font-weight: 600;
	background: var(--grad-amber);
	box-shadow: 0 8px 20px -8px rgba(204, 153, 0, 0.75);
}

.nav-cta {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--ink);
	border: none;
	cursor: pointer;
}
.nav-toggle span {
	width: 20px;
	height: 2px;
	margin-inline: auto;
	background: #fff;
	border-radius: 3px;
	transition:
		transform 0.3s var(--ease),
		opacity 0.3s var(--ease);
}
.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;
	color: #fff;
	margin: 0;
	border-radius: 0;
	overflow: hidden;
	padding: clamp(4.5rem, 11vw, 8.5rem) 0 clamp(4.5rem, 10vw, 7.5rem);
	background:
		radial-gradient(
			28rem 28rem at var(--mx, 72%) var(--my, 18%),
			rgba(204, 153, 0, 0.22),
			transparent 60%
		),
		linear-gradient(
			120deg,
			rgba(0, 0, 0, 0.94) 0%,
			rgba(10, 10, 10, 0.82) 45%,
			rgba(26, 26, 26, 0.55) 100%
		),
		var(--hero-img, url("../images/hero-home.png"));
	background-size: cover;
	background-position: center;
	box-shadow: none;
}
.hero::before,
.hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(30px);
	pointer-events: none;
	z-index: 0;
}
.hero::before {
	width: 34rem;
	height: 34rem;
	top: -12rem;
	right: -8rem;
	background: radial-gradient(
		circle,
		rgba(204, 153, 0, 0.4),
		transparent 60%
	);
	animation: float1 14s ease-in-out infinite;
}
.hero::after {
	width: 26rem;
	height: 26rem;
	bottom: -10rem;
	left: -6rem;
	background: radial-gradient(
		circle,
		rgba(102, 153, 255, 0.32),
		transparent 60%
	);
	animation: float2 18s ease-in-out infinite;
}
@keyframes float1 {
	50% {
		transform: translate(-2rem, 2rem) scale(1.08);
	}
}
@keyframes float2 {
	50% {
		transform: translate(2rem, -1.5rem) scale(1.1);
	}
}
.hero__inner {
	position: relative;
	z-index: 2;
	max-width: 780px;
}
.hero .eyebrow {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.16);
	color: #fff;
	backdrop-filter: blur(6px);
}
.hero h1 {
	color: #fff;
	margin: 1.4rem 0;
	text-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.hero h1 .grad-text {
	filter: drop-shadow(0 8px 24px rgba(204, 153, 0, 0.4));
}
.hero p {
	font-size: 1.22rem;
	color: #dcdcdc;
	max-width: 580px;
	margin-bottom: 2.4rem;
}
.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

.hero--page {
	text-align: center;
	padding: clamp(4rem, 9vw, 6.5rem) 0;
}
.hero--page .hero__inner {
	max-width: 820px;
	margin: 0 auto;
}
.hero--page p {
	margin-inline: auto;
}

.breadcrumb {
	display: inline-flex;
	justify-content: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: #b0b0b0;
	margin-top: 1.8rem;
	padding: 0.5rem 1.1rem;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
}
.breadcrumb a:hover {
	color: var(--amber);
}
.breadcrumb span {
	color: var(--amber);
}

/* ----------  Marquee ticker (JS-injected)  ---------- */
.marquee {
	margin-top: clamp(2.5rem, 6vw, 5rem);
	border-block: 1px solid var(--line-2);
	background: var(--surface);
	overflow: hidden;
	padding: 1.15rem 0;
}
.marquee__track {
	display: flex;
	gap: 3rem;
	width: max-content;
	animation: marquee 32s linear infinite;
}
.marquee:hover .marquee__track {
	animation-play-state: paused;
}
.marquee__item {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--navy);
	white-space: nowrap;
}
.marquee__item::before {
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--grad-amber);
}
@keyframes marquee {
	to {
		transform: translateX(-50%);
	}
}

/* ----------  Trust bar / stats  ---------- */
.trustbar {
	position: relative;
	background: radial-gradient(
		120% 140% at 50% -20%,
		var(--ink-3),
		var(--ink) 70%
	);
	color: #b0b0b0;
	overflow: hidden;
}
.trustbar::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			30rem 30rem at 15% 120%,
			rgba(204, 153, 0, 0.16),
			transparent 60%
		),
		radial-gradient(
			30rem 30rem at 85% -20%,
			rgba(102, 153, 255, 0.14),
			transparent 60%
		);
}
.trustbar__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	padding: 3rem 0;
	text-align: center;
}
.trustbar__item {
	position: relative;
	padding: 0.5rem 1rem;
}
.trustbar__item + .trustbar__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background: linear-gradient(
		transparent,
		rgba(255, 255, 255, 0.14),
		transparent
	);
}
.trustbar__item strong {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 4vw, 3.2rem);
	font-weight: 800;
	line-height: 1;
	background: var(--grad-amber);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.trustbar__item span {
	display: block;
	margin-top: 0.6rem;
	font-size: 0.9rem;
	letter-spacing: 0.03em;
}

/* ----------  Cards  ---------- */
.grid {
	display: grid;
	gap: 1.6rem;
}
.grid--2 {
	grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
	grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

.card {
	position: relative;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 2.1rem 1.9rem;
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition:
		transform 0.4s var(--ease),
		box-shadow 0.4s var(--ease),
		border-color 0.4s var(--ease);
}
.card::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: inherit;
	background: var(--grad-amber);
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.4s var(--ease);
}
.card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow);
}
.card:hover::before {
	opacity: 1;
}
.card__icon {
	position: relative;
	width: 62px;
	height: 62px;
	display: grid;
	place-items: center;
	border-radius: 18px;
	background: linear-gradient(
		135deg,
		rgba(204, 153, 0, 0.16),
		rgba(204, 153, 0, 0.06)
	);
	color: var(--amber-2);
	margin-bottom: 1.4rem;
	transition: transform 0.4s var(--spring);
}
.card:hover .card__icon {
	transform: rotate(-6deg) scale(1.06);
}
.card__icon svg {
	width: 30px;
	height: 30px;
}
.card h3 {
	margin-bottom: 0.6rem;
}
.card p {
	color: var(--muted);
	font-size: 0.98rem;
}
.section--dark .card {
	background: rgba(255, 255, 255, 0.03);
	border-color: rgba(255, 255, 255, 0.08);
}
.section--dark .card h3 {
	color: #fff;
}
.section--dark .card p {
	color: #a3a3a3;
}

/* Service split cards */
.service-card {
	position: relative;
	background: var(--surface);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	transition:
		transform 0.45s var(--ease),
		box-shadow 0.45s var(--ease);
}
.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}
.service-card__img {
	position: relative;
	aspect-ratio: 16 / 11;
	overflow: hidden;
}
.service-card__img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 55%);
}
.service-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}
.service-card:hover .service-card__img img {
	transform: scale(1.09);
}
.service-card__body {
	padding: 1.8rem 1.8rem 2rem;
}
.service-card__body h3 {
	margin-bottom: 0.6rem;
}
.service-card__body p {
	color: var(--muted);
	font-size: 0.98rem;
	margin-bottom: 1.3rem;
}
.service-card__link {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--amber-2);
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	transition: gap 0.3s var(--ease);
}
.service-card__link:hover {
	gap: 0.85rem;
}

/* ----------  Split  ---------- */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}
.split--reverse .split__media {
	order: 2;
}
.split__media {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow);
	aspect-ratio: 5 / 4;
}
.split__media::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}
.split__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.split__content .eyebrow {
	margin-bottom: 1.3rem;
}
.split__content h2 {
	margin-bottom: 1.2rem;
}
.split__content > p {
	color: var(--muted);
	font-size: 1.06rem;
	margin-bottom: 1.2rem;
}
.section--dark .split__content > p {
	color: #a3a3a3;
}

.check-list {
	display: grid;
	gap: 0.9rem;
	margin: 1.6rem 0 2rem;
}
.check-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	font-weight: 500;
	color: var(--text);
}
.section--dark .check-list li {
	color: #d4d4d4;
}
.check-list li::before {
	content: "";
	flex: 0 0 24px;
	height: 24px;
	margin-top: 1px;
	border-radius: 8px;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
			center / 14px no-repeat,
		var(--grad-amber);
	box-shadow: 0 6px 16px -6px rgba(204, 153, 0, 0.6);
}

/* ----------  Gallery  ---------- */
.gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
}
.gallery__item {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 4 / 3;
	box-shadow: var(--shadow-sm);
}
.gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease);
}
.gallery__item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 55%);
	opacity: 0;
	transition: opacity 0.4s var(--ease);
}
.gallery__item .gallery__zoom {
	position: absolute;
	right: 14px;
	bottom: 14px;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	background: var(--grad-amber);
	color: var(--ink);
	font-weight: 700;
	border-radius: 50%;
	transform: scale(0.3) translateY(10px);
	opacity: 0;
	transition:
		transform 0.4s var(--spring),
		opacity 0.4s var(--ease);
	z-index: 2;
}
.gallery__item:hover img {
	transform: scale(1.1);
}
.gallery__item:hover::after {
	opacity: 1;
}
.gallery__item:hover .gallery__zoom {
	transform: scale(1) translateY(0);
	opacity: 1;
}
.gallery__item.tall {
	grid-row: span 2;
	aspect-ratio: auto;
}

/* Lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.86);
	backdrop-filter: blur(14px);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	padding: 1.5rem;
	opacity: 0;
	transition: opacity 0.3s var(--ease);
}
.lightbox.open {
	display: flex;
	opacity: 1;
}
.lightbox img {
	max-width: min(92vw, 1040px);
	max-height: 86vh;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
}
.lightbox__close,
.lightbox__nav {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #fff;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition:
		background 0.25s var(--ease),
		transform 0.25s var(--ease);
	font-size: 1.5rem;
}
.lightbox__close:hover,
.lightbox__nav:hover {
	background: var(--grad-amber);
	color: var(--ink);
	transform: scale(1.08);
}
.lightbox__close {
	top: 24px;
	right: 24px;
}
.lightbox__nav {
	top: 50%;
	transform: translateY(-50%);
}
.lightbox__nav.prev {
	left: 24px;
}
.lightbox__nav.next {
	right: 24px;
}

/* ----------  Facebook feed  ---------- */
.fb-feed {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.fb-embed {
	max-width: 500px;
	margin: 0 auto;
	background: var(--surface);
	border: 1px solid var(--line-2);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.fb-embed iframe {
	display: block;
	width: 100%;
	border: 0;
}
.fb-plugin {
	max-width: 1100px;
	margin: 0 auto;
}
.fb-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	transition:
		transform 0.4s var(--ease),
		box-shadow 0.4s var(--ease);
}
.fb-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}
.fb-card__head {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 1.1rem 1.3rem;
}
.fb-card__avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	display: grid;
	place-items: center;
	font-family: var(--font-logo);
	font-weight: 700;
	font-size: 1.15rem;
	box-shadow: 0 0 0 3px rgba(204, 153, 0, 0.2);
}
.fb-card__avatar span {
	color: var(--amber);
}
.fb-card__meta strong {
	display: block;
	font-size: 0.95rem;
	color: var(--navy);
}
.fb-card__meta time {
	font-size: 0.8rem;
	color: var(--muted);
}
.fb-card__img {
	aspect-ratio: 16 / 10;
	overflow: hidden;
}
.fb-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease);
}
.fb-card:hover .fb-card__img img {
	transform: scale(1.06);
}
.fb-card__body {
	padding: 1.2rem 1.3rem 1.4rem;
	font-size: 0.96rem;
	color: var(--text);
	flex: 1;
}
.fb-card__foot {
	display: flex;
	gap: 1.3rem;
	padding: 0.9rem 1.3rem;
	border-top: 1px solid var(--line);
	font-size: 0.85rem;
	color: var(--muted);
}
.fb-card__foot span {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}
.fb-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	color: #1877f2;
	padding: 0.45rem 1rem;
	background: rgba(24, 119, 242, 0.1);
	border-radius: 100px;
	margin-bottom: 1.1rem;
}

/* ----------  Testimonials  ---------- */
.testimonial {
	position: relative;
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 2.3rem 2.1rem;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--line);
	height: 100%;
	overflow: hidden;
}
.testimonial::before {
	content: "\201C";
	position: absolute;
	top: -1.2rem;
	right: 1.2rem;
	font-family: var(--font-logo);
	font-size: 8rem;
	line-height: 1;
	color: rgba(204, 153, 0, 0.14);
}
.testimonial__stars {
	color: var(--amber-2);
	margin-bottom: 1.1rem;
	letter-spacing: 3px;
	font-size: 1.05rem;
}
.testimonial p {
	font-size: 1.05rem;
	color: var(--text);
	margin-bottom: 1.6rem;
	position: relative;
}
.testimonial__author {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}
.testimonial__avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--slate), var(--navy));
	color: #fff;
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-weight: 700;
}
.testimonial__author strong {
	display: block;
	color: var(--navy);
	font-size: 0.96rem;
}
.testimonial__author span {
	font-size: 0.85rem;
	color: var(--muted);
}

/* ----------  CTA band  ---------- */
.cta-band {
	position: relative;
	isolation: isolate;
	background: var(--grad-amber);
	color: var(--ink);
	border-radius: var(--radius-xl);
	padding: clamp(3rem, 7vw, 5rem);
	text-align: center;
	overflow: hidden;
	box-shadow: var(--glow);
}
.cta-band::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(
			24rem 24rem at 12% 120%,
			rgba(255, 255, 255, 0.35),
			transparent 60%
		),
		radial-gradient(
			20rem 20rem at 90% -20%,
			rgba(0, 0, 0, 0.22),
			transparent 60%
		);
}
.cta-band h2 {
	color: var(--ink);
	margin-bottom: 0.9rem;
	font-size: clamp(2rem, 4.5vw, 3rem);
}
.cta-band p {
	max-width: 580px;
	margin: 0 auto 2rem;
	color: rgba(0, 0, 0, 0.78);
	font-weight: 500;
	font-size: 1.1rem;
}
.cta-band .btn--primary {
	background: var(--ink);
	color: #fff;
	box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.5);
}
.cta-band .btn--primary:hover {
	background: #000;
}

/* ----------  Process steps  ---------- */
.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.6rem;
}
.step {
	position: relative;
	padding: 2rem 1.6rem 1.8rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	transition:
		transform 0.4s var(--ease),
		box-shadow 0.4s var(--ease);
}
.step:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}
.step__num {
	width: 58px;
	height: 58px;
	border-radius: 16px;
	background: linear-gradient(
		135deg,
		rgba(204, 153, 0, 0.16),
		rgba(204, 153, 0, 0.06)
	);
	color: var(--amber-2);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.5rem;
	display: grid;
	place-items: center;
	margin-bottom: 1.2rem;
}
.step h3 {
	margin-bottom: 0.5rem;
}
.step p {
	color: var(--muted);
	font-size: 0.96rem;
}

/* ----------  Contact  ---------- */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}
.contact-info {
	display: grid;
	gap: 1.1rem;
}
.contact-info__item {
	display: flex;
	gap: 1.1rem;
	padding: 1.4rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	transition:
		transform 0.35s var(--ease),
		box-shadow 0.35s var(--ease);
}
.contact-info__item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}
.contact-info__icon {
	flex: 0 0 50px;
	height: 50px;
	border-radius: 14px;
	background: linear-gradient(
		135deg,
		rgba(204, 153, 0, 0.16),
		rgba(204, 153, 0, 0.06)
	);
	color: var(--amber-2);
	display: grid;
	place-items: center;
}
.contact-info__item strong {
	display: block;
	color: var(--navy);
	margin-bottom: 0.15rem;
	font-family: var(--font-display);
}
.contact-info__item a,
.contact-info__item p {
	color: var(--muted);
	font-size: 0.95rem;
}
.contact-info__item a:hover {
	color: var(--amber-2);
}

.form {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	padding: clamp(1.8rem, 4vw, 2.6rem);
	box-shadow: var(--shadow);
}
.form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.1rem;
}
.field {
	margin-bottom: 1.1rem;
}
.field label {
	display: block;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.88rem;
	margin-bottom: 0.45rem;
	color: var(--navy);
}
.field input,
.field select,
.field textarea {
	width: 100%;
	padding: 0.9rem 1.1rem;
	border: 1.5px solid var(--line-2);
	border-radius: var(--radius-sm);
	font: inherit;
	color: var(--text);
	background: var(--bg);
	transition:
		border-color 0.25s var(--ease),
		box-shadow 0.25s var(--ease),
		background 0.25s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--amber);
	background: var(--surface);
	box-shadow: 0 0 0 4px rgba(204, 153, 0, 0.16);
}
.field textarea {
	resize: vertical;
	min-height: 140px;
}
.form .btn {
	width: 100%;
	justify-content: center;
}
.form__note {
	font-size: 0.82rem;
	color: var(--muted);
	margin-top: 1rem;
	text-align: center;
}
.form__success {
	display: none;
	background: rgba(34, 197, 94, 0.12);
	border: 1px solid rgba(34, 197, 94, 0.4);
	color: #15803d;
	padding: 1rem 1.2rem;
	border-radius: var(--radius-sm);
	margin-bottom: 1.2rem;
	font-weight: 500;
}
.form__success.show {
	display: block;
}

/* ----------  Contact Form 7 (mapped onto the theme's field / button design)  ---------- */
.wpcf7 {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	padding: clamp(1.8rem, 4vw, 2.6rem);
	box-shadow: var(--shadow);
}
.wpcf7-form p {
	margin: 0 0 1.15rem;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.88rem;
	color: var(--navy);
	line-height: 1.5;
}
.wpcf7-form label {
	display: block;
	font: inherit;
	color: inherit;
	width: 100%;
}
/* CF7 puts a <br> between the label text and the field; use block spacing instead */
.wpcf7-form label br,
.wpcf7-form p > br {
	display: none;
}
.wpcf7-form-control-wrap {
	display: block;
	margin-top: 0.45rem;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	padding: 0.9rem 1.1rem;
	border: 1.5px solid var(--line-2);
	border-radius: var(--radius-sm);
	font: inherit;
	font-weight: 500;
	color: var(--text);
	background: var(--bg);
	transition:
		border-color 0.25s var(--ease),
		box-shadow 0.25s var(--ease),
		background 0.25s var(--ease);
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
	color: var(--muted);
	opacity: 0.7;
}
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form input[type="date"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--amber);
	background: var(--surface);
	box-shadow: 0 0 0 4px rgba(204, 153, 0, 0.16);
}
.wpcf7-form textarea {
	resize: vertical;
	min-height: 150px;
}
.wpcf7-form .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 0.4rem;
	padding: 1rem 1.8rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1rem;
	color: var(--ink);
	background: var(--grad-amber);
	border: 1px solid transparent;
	border-radius: 100px;
	cursor: pointer;
	box-shadow: var(--glow);
	transition:
		transform 0.35s var(--spring),
		box-shadow 0.35s var(--ease),
		filter 0.3s var(--ease);
}
.wpcf7-form .wpcf7-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 26px 70px -18px rgba(204, 153, 0, 0.7);
	filter: brightness(1.02);
}
.wpcf7-form .wpcf7-submit:disabled {
	opacity: 0.6;
	cursor: default;
	transform: none;
}
.wpcf7-spinner {
	margin: 0 auto;
}

/* Two-up rows: add class "row-2" to a CF7 <p> to place two fields side by side */
@media (min-width: 620px) {
	.wpcf7-form p.row-2 {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1.15rem;
	}
}

.map-embed {
	margin-top: 3rem;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 1px solid var(--line);
	aspect-ratio: 21 / 7;
	background: var(--bg-2);
}
.map-embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	filter: grayscale(0.2) contrast(1.05);
}

/* ----------  Footer  ---------- */
.footer {
	position: relative;
	background: radial-gradient(
		120% 120% at 20% 0%,
		var(--ink-3),
		var(--ink) 65%
	);
	color: #a3a3a3;
	padding-top: clamp(3.5rem, 6vw, 5rem);
	overflow: hidden;
}
.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--grad-amber);
}
.footer::after {
	content: "";
	position: absolute;
	width: 30rem;
	height: 30rem;
	bottom: -18rem;
	left: 50%;
	transform: translateX(-50%);
	background: radial-gradient(
		circle,
		rgba(204, 153, 0, 0.14),
		transparent 60%
	);
	pointer-events: none;
}
.footer__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
	gap: 2.5rem;
	padding-bottom: 3rem;
}
.footer .logo {
	color: #fff;
	margin-bottom: 1rem;
}
.footer .logo__img {
	height: 84px;
	max-width: min(340px, 82vw);
	margin: -0.6rem 0;
}
.footer p {
	font-size: 0.94rem;
	line-height: 1.8;
}
.footer h4 {
	font-family: var(--font-display);
	color: #fff;
	font-size: 0.82rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 1.3rem;
}
.footer ul {
	display: grid;
	gap: 0.7rem;
}
.footer ul a {
	font-size: 0.94rem;
	transition:
		color 0.25s var(--ease),
		padding-left 0.25s var(--ease);
}
.footer ul a:hover {
	color: var(--amber);
	padding-left: 6px;
}
.footer__social {
	display: flex;
	gap: 0.7rem;
	margin-top: 1.4rem;
}
.footer__social a {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: grid;
	place-items: center;
	color: #d4d4d4;
	transition:
		background 0.3s var(--ease),
		color 0.3s var(--ease),
		transform 0.3s var(--spring);
}
.footer__social a:hover {
	background: var(--grad-amber);
	color: var(--ink);
	transform: translateY(-4px);
}
.footer__contact li {
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
	margin-bottom: 0.8rem;
	font-size: 0.94rem;
}
.footer__contact svg {
	flex: 0 0 18px;
	margin-top: 4px;
	color: var(--amber);
}
.footer__bottom {
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 1.6rem 0;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	font-size: 0.85rem;
}

/* ----------  Reveal animation  ---------- */
.reveal {
	opacity: 0;
	transform: translateY(34px);
	transition:
		opacity 0.8s var(--ease),
		transform 0.8s var(--ease);
}
.reveal.visible {
	opacity: 1;
	transform: none;
}

/* ----------  Responsive  ---------- */
@media (max-width: 992px) {
	.grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.steps {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
	.fb-feed {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 860px) {
	.nav-toggle {
		display: flex;
	}
	.nav-links {
		position: absolute;
		top: calc(100% + 0.7rem);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0.2rem;
		background: rgba(255, 255, 255, 0.9);
		backdrop-filter: blur(18px) saturate(160%);
		padding: 0.8rem;
		border-radius: var(--radius-lg);
		border: 1px solid var(--line-2);
		box-shadow: var(--shadow);
		transform: translateY(-12px) scale(0.98);
		opacity: 0;
		visibility: hidden;
		transition:
			transform 0.35s var(--spring),
			opacity 0.3s var(--ease),
			visibility 0.3s;
		margin: 0;
	}
	.nav-links.open {
		transform: translateY(0) scale(1);
		opacity: 1;
		visibility: visible;
	}
	.nav-links a {
		padding: 0.9rem 1rem;
	}
	.nav-cta .btn:not(.nav-toggle) {
		display: none;
	}

	.split {
		grid-template-columns: 1fr;
	}
	.split--reverse .split__media {
		order: 0;
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.grid--3 {
		grid-template-columns: repeat(2, 1fr);
	}
	.gallery {
		grid-template-columns: repeat(2, 1fr);
	}
	.gallery__item.tall {
		grid-row: span 1;
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 560px) {
	.grid--2,
	.grid--3,
	.grid--4,
	.fb-feed,
	.steps {
		grid-template-columns: 1fr;
	}
	.trustbar__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 1rem;
	}
	.trustbar__item:nth-child(odd)::before {
		display: none;
	}
	.form__row {
		grid-template-columns: 1fr;
	}
	.footer__grid {
		grid-template-columns: 1fr;
	}
	.footer__bottom {
		flex-direction: column;
		text-align: center;
	}
	.hero__actions {
		flex-direction: column;
		align-items: stretch;
	}
	.hero__actions .btn {
		width: 100%;
		justify-content: center;
	}
	.logo {
		font-size: 1.6rem;
	}
	.logo__img {
		height: 36px;
	}
	.footer .logo__img {
		height: 68px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
}
