/* ============================================================
   Urvanam — Landscaping Luxury theme
   Green-forward luxury design system
   ============================================================ */

:root {
	/* Palette */
	--c-bg: #0b1510;
	--c-surface: #10201a;
	--c-surface-elevated: #173022;
	--c-primary: #3f9b63;
	--c-primary-light: #63b383;
	--c-primary-dark: #0e5729;
	--c-gold: #d4a843;
	--c-gold-light: #e8c56d;
	--c-copper: #b87333;
	--c-cream: #f4efe2;
	--c-text: #f4efe2;
	--c-text-secondary: #c7c2b4;
	--c-text-muted: #8a8778;
	--c-border: #2a3a30;
	--c-border-light: #3a4f42;

	/* Typography */
	--font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
	--font-heading: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
	--font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;

	/* Layout */
	--container: 72rem;
	--section-pad: 6rem;
	--radius: 1rem;
	--radius-lg: 2rem;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--c-bg);
	color: var(--c-text);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary-light); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--c-gold); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; margin: 0 0 1rem; color: var(--c-text); }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
figure { margin: 0; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--section-pad) 0; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-block;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.95rem 1.75rem;
	border-radius: 0.5rem;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.2s var(--ease), box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--c-primary); color: #ffffff; }
.btn-primary:hover { background: var(--c-primary-light); color: #ffffff; box-shadow: 0 0 28px rgba(63,155,99,0.35); }
.btn-gold { background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-light) 50%, #b89238 100%); color: #201a08; }
.btn-gold:hover { box-shadow: 0 0 32px rgba(212,168,67,0.4); color: #201a08; }
.btn-outline { background: transparent; color: var(--c-text); border-color: var(--c-border-light); }
.btn-outline:hover { border-color: var(--c-gold); color: var(--c-gold); }
.btn-white { background: var(--c-cream); color: #0b1510; }
.btn-white:hover { background: #fff; color: #0b1510; }
.btn-white-outline { background: transparent; color: var(--c-cream); border-color: rgba(244,239,226,0.5); }
.btn-white-outline:hover { border-color: var(--c-cream); color: var(--c-cream); }

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	transition: background 0.3s ease, box-shadow 0.3s ease;
	background: rgba(255, 255, 255, 0.45);
	backdrop-filter: blur(20px) saturate(160%);
	-webkit-backdrop-filter: blur(20px) saturate(160%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.65);
	box-shadow: 0 4px 28px rgba(11, 21, 16, 0.12);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.9rem;
	padding-bottom: 0.9rem;
	gap: 1rem;
}
.site-brand { display: flex; align-items: center; gap: 0.75rem; color: var(--c-primary-dark); }
.site-brand:hover { color: var(--c-primary); }
.site-logo { height: 44px; width: auto; }
.site-name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: 0.01em; color: var(--c-primary-dark); }

.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-menu { display: flex; list-style: none; margin: 0; padding: 0; gap: 1.75rem; }
.nav-menu a { color: var(--c-primary-dark); font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; }
.nav-menu a:hover { color: var(--c-primary); }
.header-cta { margin-left: 0.5rem; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--c-primary-dark); margin: 5px 0; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8rem 0 5rem;
	overflow: hidden;
}
.hero-bg {
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 70% 20%, rgba(63,155,99,0.18) 0%, transparent 60%),
		radial-gradient(ellipse 60% 50% at 20% 80%, rgba(14,87,41,0.5) 0%, transparent 60%),
		linear-gradient(160deg, #0c1a12 0%, #0b1510 45%, #08110c 100%);
}
.hero-bg img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	opacity: 0.5;
}
.hero-bg::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(8,17,12,0.95) 0%, rgba(8,17,12,0.62) 50%, rgba(8,17,12,0.22) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 48rem; }
.hero-badge {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--c-gold);
	border: 1px solid rgba(212,168,67,0.4);
	border-radius: 999px;
	padding: 0.4rem 1rem;
	margin-bottom: 1.5rem;
}
.hero-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(2.5rem, 5vw, 4.25rem);
	line-height: 1.08;
	margin-bottom: 1.25rem;
	color: var(--c-cream);
}
.hero-subhead { font-size: 1.2rem; color: var(--c-text-secondary); max-width: 40rem; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; color: var(--c-text-muted); font-size: 0.9rem; }
.hero-trust .stars { color: var(--c-gold); letter-spacing: 0.1em; }
.hero-trust .dot { opacity: 0.5; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--c-surface); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; }
.trust-stat { padding: 2rem 0.5rem; border-right: 1px solid var(--c-border); }
.trust-stat:last-child { border-right: none; }
.trust-num { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--c-primary-light); }
.trust-stat span { color: var(--c-text-muted); font-size: 0.9rem; }

/* ---------- Section headers ---------- */
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 3.5rem; }
.section-tag {
	font-family: var(--font-heading);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-gold);
	margin-bottom: 0.75rem;
}
.section-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); color: var(--c-cream); }
.section-sub { color: var(--c-text-secondary); font-size: 1.1rem; margin-top: 0.75rem; }

/* ---------- Cards ---------- */
.card {
	background: var(--c-surface-elevated);
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--c-primary); box-shadow: 0 0 40px rgba(63,155,99,0.14), 0 10px 30px rgba(0,0,0,0.35); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { padding: 2rem 1.75rem; text-align: left; }
.card-icon {
	width: 3.5rem; height: 3.5rem;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.75rem;
	background: linear-gradient(135deg, rgba(63,155,99,0.2), rgba(14,87,41,0.3));
	border: 1px solid var(--c-border);
	border-radius: 0.9rem;
	margin-bottom: 1.25rem;
}
.card-media { display: block; aspect-ratio: 4/3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-media-placeholder { display: flex; align-items: center; justify-content: center; font-size: 3rem; background: linear-gradient(135deg, var(--c-surface), var(--c-primary-dark)); }
.card-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.card-title a { color: var(--c-text); }
.card-title a:hover { color: var(--c-gold); }
.card-desc { color: var(--c-text-secondary); font-size: 0.95rem; margin-bottom: 1rem; }
.card-link { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; color: var(--c-primary-light); letter-spacing: 0.03em; }
.card-link:hover { color: var(--c-gold); }
.card-body { padding: 1.5rem; }

/* ---------- Projects ---------- */
.projects { background: var(--c-surface); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ---------- Process ---------- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; list-style: none; padding: 0; margin: 0; counter-reset: step; }
.process-step { position: relative; padding: 2rem 1.5rem; background: var(--c-surface-elevated); border: 1px solid var(--c-border); border-radius: var(--radius); }
.process-num { display: block; font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: rgba(63,155,99,0.35); line-height: 1; margin-bottom: 0.75rem; }
.process-step h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--c-text-secondary); font-size: 0.95rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--c-surface); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial { background: var(--c-surface-elevated); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 2rem; }
.testimonial blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--c-text); margin: 0 0 1.25rem; }
.testimonial figcaption { color: var(--c-text-muted); font-size: 0.9rem; }
.testimonial figcaption strong { display: block; color: var(--c-text); font-family: var(--font-heading); }

/* ---------- About / Values ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 24rem; background: linear-gradient(135deg, var(--c-primary-dark), var(--c-surface)); border: 1px solid var(--c-border); }
.about-visual-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 6rem; opacity: 0.85; }
.about-content .section-title { margin-bottom: 1.25rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0 2rem; }
.value { padding: 1.25rem; background: var(--c-surface-elevated); border: 1px solid var(--c-border); border-radius: var(--radius); }
.value span { font-size: 1.5rem; }
.value strong { display: block; font-family: var(--font-heading); margin: 0.4rem 0; }
.value p { font-size: 0.85rem; color: var(--c-text-muted); margin: 0; }

/* ---------- CTA ---------- */
.cta-section { padding: 5rem 0; }
.cta-inner {
	text-align: center;
	background: linear-gradient(135deg, #3f9b63 0%, #2f7d4d 50%, #0e5729 100%);
	border-radius: var(--radius-lg);
	padding: 4rem 2rem;
}
.cta-inner h2 { font-family: var(--font-display); color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin: 1.5rem 0; }
.cta-note { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: #08110c; border-top: 1px solid var(--c-border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .site-logo { height: 52px; margin-bottom: 1rem; }
.footer-tagline { color: var(--c-text-secondary); font-size: 0.95rem; }
.footer-social { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-social a { font-size: 0.85rem; color: var(--c-text-muted); }
.footer-social a:hover { color: var(--c-gold); }
.footer-heading { font-family: var(--font-heading); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-gold); margin-bottom: 1.25rem; }
.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 0.6rem; }
.footer-menu a { color: var(--c-text-secondary); font-size: 0.9rem; }
.footer-menu a:hover { color: var(--c-gold); }
.footer-contact-list { list-style: none; padding: 0; margin: 0; color: var(--c-text-secondary); font-size: 0.9rem; }
.footer-contact-list li { margin-bottom: 0.6rem; }
.footer-contact-list a { color: var(--c-text-secondary); }
.footer-bottom { border-top: 1px solid var(--c-border); padding-top: 1.5rem; text-align: center; color: var(--c-text-muted); font-size: 0.85rem; }
.footer-bottom p { margin: 0; }

/* ---------- Page content (inner pages) ---------- */
.page-content { padding: 8rem 1.5rem 5rem; max-width: var(--container); margin: 0 auto; }
.entry-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.entry-thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem; }
.entry-body { color: var(--c-text-secondary); font-size: 1.05rem; line-height: 1.75; }
.entry-body h2 { font-family: var(--font-heading); color: var(--c-text); font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.entry-body h3 { font-family: var(--font-heading); color: var(--c-text); font-size: 1.15rem; margin: 1.5rem 0 0.5rem; }
.entry-body li { margin-bottom: 0.5rem; }
.entry-body a { color: var(--c-primary-light); }
.entry-body a:hover { color: var(--c-gold); }
.page-intro { font-size: 1.15rem; color: var(--c-text-secondary); max-width: 46rem; margin-bottom: 1rem; }
.service-breadcrumb { margin-bottom: 1.25rem; }
.service-breadcrumb a { color: var(--c-primary-light); font-weight: 600; }
.contact-list { list-style: none; padding: 0; }
.contact-list li { margin-bottom: 0.75rem; }
.contact-list a { color: var(--c-primary-light); }
.not-found { text-align: center; padding-top: 12rem; }

/* ---------- Inner-page hero banner ---------- */
.page-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 26rem;
	overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-scrim {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(11,21,16,0.35) 0%, rgba(11,21,16,0.15) 40%, rgba(11,21,16,0.9) 100%);
}
.page-hero-inner { position: relative; z-index: 1; width: 100%; padding-bottom: 4rem; }
.page-hero .entry-title { margin-bottom: 0; max-width: 46rem; }
.page-hero .service-breadcrumb { margin-bottom: 1rem; }
.page-hero .service-breadcrumb a { color: var(--c-gold); }

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

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
	.services-grid, .projects-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
	.process-steps { grid-template-columns: repeat(2, 1fr); }
	.about-split { grid-template-columns: 1fr; gap: 2rem; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
	:root { --section-pad: 4rem; }
	.page-hero { min-height: 19rem; }
	.page-hero-inner { padding-bottom: 2.5rem; }
	.services-grid, .projects-grid, .testimonial-grid, .process-steps, .values-grid { grid-template-columns: 1fr; }
	.trust-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.site-nav {
		position: fixed; inset: 0; top: 0;
		background: rgba(255, 255, 255, 0.98);
		flex-direction: column; justify-content: center;
		gap: 2rem;
		transform: translateY(-100%);
		transition: transform 0.35s var(--ease);
	}
	.site-nav.is-open { transform: none; }
	.nav-menu { flex-direction: column; align-items: center; gap: 1.25rem; }
	.nav-menu a { font-size: 1.25rem; color: var(--c-primary-dark); }
	.nav-toggle { display: block; position: relative; z-index: 110; }
	.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
	.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
	.header-cta { margin-left: 0; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; transition: none; }
	.btn, .card { transition: none; }
}
:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 2px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ============================================================
   GLASSMORPHISM LAYER — added 2026-08-24 (reversible)
   To revert: delete everything from this banner to end of file,
   or restore backups/theme_backup_*.tar.gz
   ============================================================ */

/* Ambient page glow — gives the frosted blur colour to refract.
   html holds the dark base; body goes transparent so the fixed
   glow layer (z-index:-1) can sit behind the content. */
html { background: #0b1510; }
body {
	background: transparent;
}
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 45% at 12% 10%, rgba(63, 155, 99, 0.18) 0%, transparent 60%),
		radial-gradient(ellipse 45% 40% at 88% 28%, rgba(212, 168, 67, 0.10) 0%, transparent 60%),
		radial-gradient(ellipse 60% 55% at 50% 95%, rgba(14, 87, 41, 0.30) 0%, transparent 65%);
}

/* Frosted-glass header */
.site-header {
	background: rgba(11, 21, 16, 0.55);
	backdrop-filter: blur(18px) saturate(160%);
	-webkit-backdrop-filter: blur(18px) saturate(160%);
	border-bottom: 1px solid rgba(244, 239, 226, 0.06);
}
.site-header.is-scrolled {
	background: rgba(11, 21, 16, 0.55);
	border-bottom: 1px solid rgba(244, 239, 226, 0.10);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* Frosted-glass cards */
.card,
.process-step,
.testimonial,
.value {
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
	backdrop-filter: blur(14px) saturate(150%);
	-webkit-backdrop-filter: blur(14px) saturate(150%);
	border: 1px solid rgba(244, 239, 226, 0.10);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 10px 34px rgba(0, 0, 0, 0.28);
}
.card:hover {
	border-color: rgba(99, 179, 131, 0.55);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 0 40px rgba(63, 155, 99, 0.18),
		0 14px 40px rgba(0, 0, 0, 0.35);
}

/* Frosted trust bar */
.trust-bar {
	background: rgba(16, 32, 26, 0.45);
	backdrop-filter: blur(16px) saturate(150%);
	-webkit-backdrop-filter: blur(16px) saturate(150%);
	border-top: 1px solid rgba(244, 239, 226, 0.08);
	border-bottom: 1px solid rgba(244, 239, 226, 0.08);
}
.trust-stat { border-right: 1px solid rgba(244, 239, 226, 0.08); }
.trust-stat:last-child { border-right: none; }

/* Keep heavier sections translucent so glow + blur read through */
.projects,
.testimonials {
	background: rgba(16, 32, 26, 0.35);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

/* Frosted-green CTA */
.cta-inner {
	background: linear-gradient(135deg, rgba(63, 155, 99, 0.82) 0%, rgba(47, 125, 77, 0.82) 50%, rgba(14, 87, 41, 0.82) 100%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.22),
		0 20px 60px rgba(0, 0, 0, 0.40);
}

/* Fallback when backdrop-filter is unsupported */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.site-header,
	.site-header.is-scrolled,
	.card,
	.process-step,
	.testimonial,
	.value,
	.trust-bar,
	.projects,
	.testimonials {
		background: #10201a;
	}
	.cta-inner {
		background: linear-gradient(135deg, #3f9b63 0%, #2f7d4d 50%, #0e5729 100%);
	}
}

/* ============================================================
   FIX 2026-08-24: backdrop-filter on .site-header created a
   containing block for the fixed .site-nav, so the mobile nav was
   sized to the header and its overflow leaked "Contact" + the CTA
   into view at the top. Move the glass onto ::before so the header
   itself is no longer a containing block.
   ============================================================ */
.site-header {
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}
.site-header::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(11, 21, 16, 0.55);
	backdrop-filter: blur(18px) saturate(160%);
	-webkit-backdrop-filter: blur(18px) saturate(160%);
	border-bottom: 1px solid rgba(244, 239, 226, 0.06);
}
.site-header.is-scrolled {
	background: transparent;
}
.site-header.is-scrolled::before {
	border-bottom: 1px solid rgba(244, 239, 226, 0.10);
}

/* ============================================================
   MODERN EDITORIAL LAYER — 2026-08-24
   Elevates the base theme from a standard info site to a modern,
   premium-studio aesthetic: grain, aurora, editorial type scale,
   marquee, bento services, ghost-numbered process, oversized
   footer wordmark.
   ============================================================ */

:root { --section-pad: 7rem; }

/* ---------- Global grain & selection ---------- */
body::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 2147483647;
	pointer-events: none;
	opacity: 0.04;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection { background: rgba(74, 222, 128, 0.85); color: #04110a; }

/* ---------- Buttons: pill + glow ---------- */
.btn { border-radius: 999px; padding: 1rem 1.9rem; letter-spacing: 0.08em; }
.btn-primary {
	background: linear-gradient(135deg, #4ade80 0%, #3f9b63 55%, #2f7d4d 100%);
	color: #04110a;
	font-weight: 700;
}
.btn-primary:hover {
	background: linear-gradient(135deg, #63e79a 0%, #4ade80 55%, #3f9b63 100%);
	color: #04110a;
	box-shadow: 0 10px 40px rgba(74, 222, 128, 0.35);
}
.btn-outline { border-color: rgba(244, 239, 226, 0.28); }

/* ---------- Hero: aurora + editorial type ---------- */
.hero-bg { z-index: 0; }
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		radial-gradient(38% 48% at 80% 22%, rgba(74, 222, 128, 0.20) 0%, transparent 62%),
		radial-gradient(30% 40% at 90% 78%, rgba(212, 168, 67, 0.14) 0%, transparent 60%);
	filter: blur(64px);
	animation: aurora 14s ease-in-out infinite alternate;
}
@keyframes aurora {
	0%   { transform: translate(0, 0) scale(1); opacity: 0.7; }
	100% { transform: translate(-4%, -3%) scale(1.18); opacity: 1; }
}
.hero-inner { z-index: 2; }
.hero-title {
	font-size: clamp(2.9rem, 7.5vw, 6.4rem);
	letter-spacing: -0.035em;
	line-height: 1.02;
	font-weight: 700;
	margin-bottom: 1.5rem;
}
.hero-title .grad {
	background: linear-gradient(100deg, #4ade80 0%, #a7f3c8 45%, #d4a843 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}
.hero-subhead { font-size: 1.22rem; max-width: 38rem; }
.hero-badge {
	border-radius: 999px;
	border-color: rgba(212, 168, 67, 0.35);
	background: rgba(212, 168, 67, 0.06);
}

/* ---------- Marquee ---------- */
.marquee {
	overflow: hidden;
	border-top: 1px solid var(--c-border);
	border-bottom: 1px solid var(--c-border);
	background: var(--c-surface);
	padding: 1.15rem 0;
	white-space: nowrap;
}
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; will-change: transform; }
.marquee-group { display: flex; align-items: center; gap: 2.75rem; padding-right: 2.75rem; }
.marquee-group span {
	font-family: var(--font-display);
	font-size: 1.05rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--c-text-secondary);
}
.marquee-group em { font-style: normal; color: var(--c-gold); font-size: 0.8rem; }
@keyframes marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ---------- Section headers: editorial ---------- */
.section-head { text-align: left; max-width: 44rem; margin: 0 0 3.25rem; }
.section-tag { display: inline-flex; align-items: center; gap: 0.75rem; letter-spacing: 0.2em; }
.section-tag::before { content: ""; width: 2.25rem; height: 1px; background: var(--c-gold); }
.section-title { font-size: clamp(2.1rem, 4.5vw, 3.4rem); letter-spacing: -0.02em; line-height: 1.1; }
.section-sub { color: var(--c-text-muted); }

/* ---------- Services: bento + image-overlay cards ---------- */
.services-grid {
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 12.5rem;
	grid-auto-flow: dense;
	gap: 1.25rem;
	counter-reset: svc;
}
.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
	overflow: hidden;
	border-radius: 1.35rem;
	border: 1px solid var(--c-border);
	background: var(--c-surface-elevated);
}
.service-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.service-card::before {
	counter-increment: svc;
	content: counter(svc, decimal-leading-zero);
	position: absolute;
	top: 1.1rem;
	right: 1.35rem;
	z-index: 2;
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: rgba(244, 239, 226, 0.55);
}
.service-card .card-media { position: absolute; inset: 0; aspect-ratio: auto; }
.service-card .card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(5, 10, 7, 0.10) 0%, rgba(5, 10, 7, 0.42) 52%, rgba(5, 10, 7, 0.94) 100%);
}
.service-card .card-media a { position: absolute; inset: 0; display: block; }
.service-card .card-media img { width: 100%; height: 100%; object-fit: cover; }
.service-card .card-title,
.service-card .card-desc,
.service-card .card-link { position: relative; z-index: 1; }
.service-card .card-title { font-size: 1.35rem; margin-bottom: 0.4rem; }
.service-card:nth-child(1) .card-title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
.service-card .card-title a { color: var(--c-cream); }
.service-card .card-desc {
	color: rgba(244, 239, 226, 0.82);
	font-size: 0.92rem;
	margin-bottom: 0.6rem;
	display: none;
}
.service-card:nth-child(1) .card-desc { display: block; max-width: 34rem; }
.service-card .card-link { color: var(--c-gold); font-size: 0.8rem; font-weight: 600; }
.service-card .card-link:hover { color: var(--c-gold-light); }

/* ---------- Cards (projects/blog): modern radius + glow ---------- */
.card { border-radius: 1.35rem; }
.card:hover {
	border-color: rgba(63, 155, 99, 0.55);
	box-shadow: 0 0 0 1px rgba(63, 155, 99, 0.35), 0 24px 60px rgba(0, 0, 0, 0.5);
}

/* ---------- Process: ghost numbers ---------- */
.process-steps { gap: 1.25rem; }
.process-step { padding: 2.25rem 1.75rem; border-radius: 1.35rem; overflow: hidden; }
.process-num {
	font-size: 4.25rem;
	font-weight: 800;
	line-height: 0.9;
	color: transparent;
	-webkit-text-stroke: 1px rgba(63, 155, 99, 0.55);
	margin-bottom: 1rem;
}
.process-step h3 { font-size: 1.25rem; letter-spacing: -0.01em; }

/* ---------- About ---------- */
.about-visual { border-radius: 1.5rem; min-height: 26rem; }

/* ---------- Trust numbers: gradient ---------- */
.trust-num {
	background: linear-gradient(120deg, #63b383 0%, #4ade80 50%, #d4a843 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

/* ---------- CTA ---------- */
.cta-inner { border-radius: 2rem; }

/* ---------- Footer wordmark ---------- */
.footer-wordmark {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(3.5rem, 14vw, 11rem);
	line-height: 0.9;
	letter-spacing: -0.03em;
	text-align: center;
	color: transparent;
	-webkit-text-stroke: 1px rgba(244, 239, 226, 0.14);
	margin: 3rem 0 0.5rem;
	user-select: none;
	pointer-events: none;
}

/* ---------- Responsive: bento collapse ---------- */
@media (max-width: 960px) {
	.services-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 11rem; }
}
@media (max-width: 640px) {
	.services-grid { grid-template-columns: 1fr; grid-auto-rows: 13rem; }
	.service-card:nth-child(1) { grid-column: span 1; grid-row: span 1; }
	.hero-title { font-size: clamp(2.5rem, 11vw, 3.4rem); }
}
