/* ==========================================================================
   Gartenpflege Rehman — Premium One-Pager (light theme)
   ========================================================================== */

:root {
	--bg: #f7f9f4;
	--bg-soft: #eef2ea;
	--surface: #ffffff;
	--surface-2: #f2f5ee;
	--border: rgba(20,30,22,0.1);
	--text: #172018;
	--text-dim: #55645a;
	--text-faint: #6d7c73;

	/* raw hues — stay vivid regardless of theme; used directly only inside the
	   intentionally-dark sections (hero photo, header-over-hero, team photo
	   captions, cta banner) where light-on-dark is still needed */
	--green-500: #3fae4d;
	--green-400: #56c866;
	--green-300: #8fe39a;
	--green-900: #12301b;

	/* accessible dark-green accent for text/icons on the light page surfaces */
	--accent: #1f7a34;
	--accent-soft: rgba(31,122,52,0.1);

	--gold: #a97a2a;

	--font-display: "Fraunces", Georgia, serif;
	--font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--container: 1220px;
	--radius-sm: 10px;
	--radius-md: 18px;
	--radius-lg: 28px;

	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
	--dur-fast: 0.25s;
	--dur-med: 0.55s;
	--dur-slow: 0.9s;

	color-scheme: light;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* , *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
em { font-style: italic; color: var(--accent); }
select { font: inherit; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.br-desktop { display: inline; }
@media (max-width: 720px) { .br-desktop { display: none; } }

.skip-link {
	position: fixed; top: -60px; left: 12px; z-index: 999;
	background: var(--green-500); color: #06170a; padding: 10px 16px;
	border-radius: 8px; font-weight: 700; transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 12px; }

/* Background noise texture for depth (very subtle) */
.noise-overlay {
	position: fixed; inset: 0; z-index: 2; pointer-events: none;
	opacity: 0.025; mix-blend-mode: multiply;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Loader
   ========================================================================== */
.loader {
	position: fixed; inset: 0; z-index: 9999;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 18px;
	background: var(--bg);
	transition: opacity .6s var(--ease-out), visibility .6s var(--ease-out);
}
.loader__mark { color: var(--accent); animation: pulse-scale 1.6s ease-in-out infinite; }
.loader__text { font-family: var(--font-display); font-size: 1.1rem; color: var(--text-dim); letter-spacing: .02em; }
.loader__text span { color: var(--accent); }
@keyframes pulse-scale { 0%,100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.12); opacity: 1; } }

body.is-loading { overflow: hidden; }
body:not(.is-loading) .loader { opacity: 0; visibility: hidden; pointer-events: none; }

/* ==========================================================================
   Cursor + scroll progress
   ========================================================================== */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none; border-radius: 50%; }
.cursor-dot { width: 6px; height: 6px; background: var(--accent); transform: translate(-50%,-50%); }
.cursor-ring { width: 34px; height: 34px; border: 1.5px solid rgba(31,122,52,0.4); transform: translate(-50%,-50%); transition: width .25s var(--ease-out), height .25s var(--ease-out), border-color .25s, background .25s; }
.cursor-ring.is-active { width: 56px; height: 56px; background: rgba(31,122,52,0.08); border-color: rgba(31,122,52,0.65); }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

.scroll-progress {
	position: fixed; top: 0; left: 0; height: 3px; width: 0%;
	background: linear-gradient(90deg, var(--green-500), var(--accent));
	z-index: 1000; box-shadow: 0 0 12px rgba(63,174,77,0.5);
}

/* ==========================================================================
   Reveal animations
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: calc(var(--reveal-delay, 0) * 90ms); will-change: transform, opacity; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { --reveal-delay: 1; }
[data-reveal-delay="2"] { --reveal-delay: 2; }
[data-reveal-delay="3"] { --reveal-delay: 3; }
[data-reveal-delay="4"] { --reveal-delay: 4; }
[data-reveal-delay="5"] { --reveal-delay: 5; }
[data-reveal-delay="6"] { --reveal-delay: 6; }

/* ==========================================================================
   Header
   — transparent over the dark hero photo by default (light text), then
     switches to a light blurred bar with dark text once scrolled.
   ========================================================================== */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 500;
	padding: 18px 0;
	transition: padding .35s var(--ease-out), background .35s var(--ease-out), box-shadow .35s var(--ease-out);
	--text: #f6f9f4;
	--text-dim: #dce8dd;
	--hdr-accent: var(--green-400);
}
.site-header.is-scrolled,
.site-header.nav-open {
	--text: #172018;
	--text-dim: #55645a;
	--hdr-accent: var(--accent);
}
.site-header::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: rgba(255,255,255,0.78);
	backdrop-filter: blur(18px) saturate(140%);
	-webkit-backdrop-filter: blur(18px) saturate(140%);
	opacity: 0; transition: opacity .35s var(--ease-out);
	border-bottom: 1px solid transparent;
	box-shadow: 0 1px 0 rgba(20,30,22,0);
}
.site-header.is-scrolled { padding: 10px 0; }
.site-header.is-scrolled::before { opacity: 1; border-bottom-color: var(--border); box-shadow: 0 6px 24px -12px rgba(20,30,22,0.15); }

.site-header__inner { max-width: var(--container); margin-inline: auto; padding-inline: 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand__icon { color: var(--hdr-accent); display: inline-flex; transition: transform .4s var(--ease-out), color .3s; }
.brand:hover .brand__icon { transform: rotate(-12deg) scale(1.08); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; font-family: var(--font-display); }
.brand__title { font-size: 1.05rem; font-weight: 600; color: var(--text); transition: color .3s; }
.brand__title--accent { color: var(--hdr-accent); transition: color .3s; }

.main-nav ul { display: flex; gap: 2px; }
.main-nav a {
	position: relative; display: block; padding: 10px 16px; font-size: .92rem; font-weight: 600; color: var(--text-dim);
	transition: color .25s;
}
.main-nav a::after {
	content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 2px;
	background: var(--hdr-accent); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-out);
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions__phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: .92rem; color: var(--text-dim); transition: color .25s; }
.header-actions__phone:hover { color: var(--hdr-accent); }
.header-actions__phone svg { color: var(--hdr-accent); }

@media (max-width: 1080px) { .header-actions__phone span { display: none; } }
@media (max-width: 980px) { .main-nav { display: none; } }
@media (max-width: 720px) { .header-actions__phone, .header-actions > .btn--primary { display: none; } }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .35s var(--ease-out), opacity .25s, background .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 980px) { .nav-toggle { display: flex; } }

.mobile-nav {
	position: fixed; inset: 0; z-index: 450;
	background: linear-gradient(160deg, #ffffff 0%, #eef2ea 70%);
	display: flex; flex-direction: column; justify-content: center; padding: 32px;
	transform: translateY(-100%); opacity: 0;
	transition: transform .5s var(--ease-out), opacity .4s var(--ease-out);
	visibility: hidden;
}
.mobile-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav li { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); transition-delay: calc(var(--i) * 60ms); }
.mobile-nav.is-open li { opacity: 1; transform: translateY(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; padding: 10px 0; display: block; color: var(--text); }
.mobile-nav__footer { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; color: var(--text-dim); font-weight: 600; font-size: .95rem; overflow-wrap: anywhere; }
.mobile-nav__footer a:hover { color: var(--accent); }
@media (min-width: 981px) { .mobile-nav { display: none; } }

/* Mobile bottom action bar */
.mobile-cta {
	position: fixed; bottom: 0; left: 0; right: 0; z-index: 480;
	display: none; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
	background: rgba(255,255,255,0.88); backdrop-filter: blur(16px);
	border-top: 1px solid var(--border);
	box-shadow: 0 -6px 24px -12px rgba(20,30,22,0.12);
	gap: 8px;
}
.mobile-cta__btn { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 4px; border-radius: 12px; color: var(--text-dim); font-size: .72rem; font-weight: 700; transition: background .2s, color .2s; }
.mobile-cta__btn--primary { background: var(--green-500); color: #06170a; }
@media (max-width: 720px) { .mobile-cta { display: flex; } body { padding-bottom: 68px; } }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
	position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 13px 24px; border-radius: 999px; font-weight: 700; font-size: .92rem;
	transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s, color .3s, border-color .3s;
	white-space: nowrap;
}
.btn svg { transition: transform .35s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: var(--green-500); color: #06170a; box-shadow: 0 8px 24px -8px rgba(63,174,77,0.55); }
.btn--primary:hover { background: var(--green-400); box-shadow: 0 12px 32px -8px rgba(63,174,77,0.65); }
.btn--ghost { border: 1.5px solid var(--border); color: var(--text); background: rgba(255,255,255,0.06); }
.btn--ghost:hover { border-color: rgba(143,227,154,0.6); background: rgba(143,227,154,0.1); }
.btn--light { background: var(--surface); color: var(--green-900); }
.btn--light:hover { background: var(--green-300); }
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--magnetic { will-change: transform; }

/* ==========================================================================
   Hero — the one intentionally dark, full-photo section on an otherwise
   light page. All text tokens are re-scoped locally to their light-on-dark
   equivalents so every component below inherits the right contrast.
   ========================================================================== */
.hero {
	position: relative; min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center;
	padding: 140px 24px 80px; overflow: hidden;
	--text: #f6f9f4;
	--text-dim: #dbe8dc;
	--text-faint: #b6cbb8;
	--border: rgba(255,255,255,0.16);
	color: var(--text);
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); animation: ken-burns 22s ease-in-out infinite alternate; filter: saturate(1.02) brightness(0.92); }
@keyframes ken-burns { from { transform: scale(1.15) translate(0,0); } to { transform: scale(1.28) translate(-1.5%, -1%); } }
.hero__gradient {
	position: absolute; inset: 0;
	background:
		radial-gradient(70% 65% at 50% 44%, rgba(8,15,11,0.5), transparent 72%),
		linear-gradient(180deg, rgba(8,15,11,0.28) 0%, rgba(8,15,11,0.12) 26%, rgba(8,15,11,0.3) 58%, #0b1410 100%);
}
.hero__particles { position: absolute; inset: 0; overflow: hidden; }
.hero__particles span {
	position: absolute; bottom: -20px; display: block; border-radius: 50%;
	background: radial-gradient(circle, rgba(143,227,154,0.9), rgba(143,227,154,0));
	animation: float-up linear infinite;
	opacity: 0;
}
@keyframes float-up {
	0% { transform: translateY(0) translateX(0); opacity: 0; }
	10% { opacity: .8; }
	90% { opacity: .5; }
	100% { transform: translateY(-115vh) translateX(var(--drift, 30px)); opacity: 0; }
}

.hero__content { position: relative; z-index: 2; max-width: 900px; text-align: center; display: flex; flex-direction: column; align-items: center; }

.eyebrow {
	display: inline-flex; align-items: center; gap: 9px;
	padding: 8px 18px; border-radius: 999px; margin-bottom: 26px;
	background: rgba(255,255,255,0.08); border: 1px solid var(--border);
	backdrop-filter: blur(8px);
	font-size: .82rem; font-weight: 700; color: var(--text-dim); letter-spacing: .02em;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-400); box-shadow: 0 0 0 4px rgba(86,200,102,0.25); animation: dot-pulse 2s ease-in-out infinite; }
@keyframes dot-pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(86,200,102,0.25); } 50% { box-shadow: 0 0 0 8px rgba(86,200,102,0.06); } }

.hero__headline { font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: 1.04; font-weight: 600; margin-bottom: 26px; color: var(--text); text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.hero__headline .line { display: block; overflow: hidden; }
.hero__headline .word { display: inline-block; transform: translateY(110%); opacity: 0; animation: word-in .9s var(--ease-out) forwards; animation-delay: var(--wd, 0s); }
.hero__headline .line .word:nth-child(1) { --wd: .05s; }
.hero__headline .line .word:nth-child(2) { --wd: .18s; }
.hero__headline .line--accent .word:nth-child(1) { --wd: .32s; }
.hero__headline .line--accent .word:nth-child(2) { --wd: .45s; }
.hero__headline .line--accent { color: var(--green-400); font-style: italic; }
@keyframes word-in { to { transform: translateY(0); opacity: 1; } }

.hero__sub { max-width: 620px; color: var(--text-dim); font-size: 1.08rem; margin-bottom: 34px; text-shadow: 0 1px 14px rgba(0,0,0,0.3); }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }

.hero__stats { display: flex; gap: 44px; flex-wrap: wrap; justify-content: center; }
.hero__stat { text-align: center; }
.hero__stat dt { font-family: var(--font-display); font-size: 2.1rem; color: var(--text); font-weight: 600; }
.hero__stat dd { margin: 2px 0 0; font-size: .82rem; color: var(--text-faint); font-weight: 600; }

.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-faint); z-index: 2; }
.scroll-cue__mouse { width: 24px; height: 38px; border: 1.5px solid var(--text-faint); border-radius: 14px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-cue__mouse span { width: 3px; height: 7px; border-radius: 2px; background: var(--green-400); animation: scroll-dot 1.8s ease-in-out infinite; }
.scroll-cue__text { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
@keyframes scroll-dot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(10px); opacity: 0; } 71% { transform: translateY(0); opacity: 0; } 100% { opacity: 1; } }

@media (max-width: 720px) {
	.hero { padding-top: 120px; min-height: 100svh; }
	.hero__stats { gap: 26px; }
	.hero__stat dt { font-size: 1.6rem; }
	.scroll-cue { display: none; }
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee { position: relative; z-index: 1; background: var(--green-500); color: #06170a; padding: 16px 0; overflow: hidden; transform: rotate(-1.2deg) scale(1.02); margin-block: -2px; }
.marquee__track { display: flex; gap: 18px; white-space: nowrap; width: max-content; animation: marquee-scroll 34s linear infinite; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: .03em; }
.marquee__dot { opacity: .6; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   Section shared
   ========================================================================== */
section { position: relative; padding: 120px 0; }
@media (max-width: 720px) { section { padding: 84px 0; } }

.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; max-width: none; }
.section-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 800; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.section-kicker::before { content: ""; width: 22px; height: 2px; background: var(--accent); }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.15; }
.section-desc { color: var(--text-dim); max-width: 340px; }

@media (max-width: 860px) {
	.section-head--split { flex-direction: column; align-items: flex-start; }
	.section-desc { max-width: none; }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services { background: var(--bg-soft); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1080px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services__grid { grid-template-columns: 1fr; } }

.service-card {
	position: relative; padding: 34px 26px; border-radius: var(--radius-md);
	background: linear-gradient(160deg, var(--surface), var(--surface-2));
	border: 1px solid var(--border); overflow: hidden;
	box-shadow: 0 2px 10px -6px rgba(20,30,22,0.08);
	transition: transform .5s var(--ease-out), border-color .4s, box-shadow .4s;
	transform-style: preserve-3d;
}
.service-card--feature { grid-column: span 2; }
@media (max-width: 620px) { .service-card--feature { grid-column: span 1; } }

.service-card__glow {
	position: absolute; width: 240px; height: 240px; border-radius: 50%;
	background: radial-gradient(circle, rgba(31,122,52,0.14), transparent 70%);
	top: var(--my, 0px); left: var(--mx, 0px); transform: translate(-50%,-50%);
	opacity: 0; transition: opacity .4s;
	pointer-events: none;
}
.service-card:hover .service-card__glow { opacity: 1; }
.service-card:hover { border-color: rgba(31,122,52,0.3); box-shadow: 0 16px 36px -18px rgba(20,30,22,0.22); }

.service-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 16px; background: var(--accent-soft); color: var(--accent); margin-bottom: 22px; transition: transform .4s var(--ease-out), background .4s; }
.service-card:hover .service-card__icon { transform: rotate(-6deg) scale(1.08); background: rgba(31,122,52,0.18); }
.service-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.service-card p { color: var(--text-dim); font-size: .93rem; }
.service-card__num { position: absolute; top: 22px; right: 26px; font-family: var(--font-display); font-size: .85rem; color: var(--text-faint); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; align-items: start; }
@media (max-width: 620px) { .gallery__grid { grid-template-columns: 1fr; } }

.gallery__item { border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.gallery__frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 12px 30px -18px rgba(20,30,22,0.3); }
.gallery__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out), filter .5s; }
.gallery__item:hover .gallery__frame img { transform: scale(1.08); filter: saturate(1.15); }
.gallery__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(6,12,9,0.75) 100%); }

.gallery__item figcaption { display: flex; align-items: center; justify-content: space-between; padding: 16px 4px 0; }
.gallery__tag { font-weight: 700; font-size: .95rem; }
.gallery__arrow { color: var(--accent); transition: transform .35s var(--ease-out); font-size: 1.1rem; }
.gallery__item:hover .gallery__arrow { transform: translateX(6px); }

/* ==========================================================================
   Team
   ========================================================================== */
.team { background: var(--bg-soft); }
.team__grid { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 22px; align-items: stretch; }
@media (max-width: 860px) { .team__grid { grid-template-columns: 1fr; } }

.team__item { border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.team__item--hero { grid-row: span 2; }
.team__frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 100%; min-height: 340px; box-shadow: 0 12px 30px -18px rgba(20,30,22,0.3); }
.team__item:not(.team__item--hero) .team__frame { aspect-ratio: 4/5; }
@media (max-width: 860px) {
	.team__item--hero { grid-row: auto; }
	.team__item--hero .team__frame, .team__item:not(.team__item--hero) .team__frame { aspect-ratio: 4/5; }
}
.team__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out), filter .5s; }
.team__item:hover .team__frame img { transform: scale(1.06); filter: saturate(1.1); }
.team__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,12,9,0.82) 100%); }

.team__item figcaption { position: absolute; left: 26px; right: 26px; bottom: 22px; display: flex; flex-direction: column; gap: 4px; z-index: 2; }
.team__item { position: relative; }
.team__tag { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: #f6f9f4; }
.team__by { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green-300); }

/* ==========================================================================
   Process / Timeline
   ========================================================================== */
.process { background: var(--bg); }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; counter-reset: step; }
.timeline::before { content: ""; position: absolute; top: 20px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border) 10%, var(--border) 90%, transparent); }
@media (max-width: 900px) { .timeline { grid-template-columns: 1fr; gap: 36px; } .timeline::before { top: 0; bottom: 0; left: 20px; width: 1px; height: auto; right: auto; background: linear-gradient(180deg, transparent, var(--border) 10%, var(--border) 90%, transparent); } }

.timeline__item { position: relative; padding-top: 54px; }
@media (max-width: 900px) { .timeline__item { padding-top: 0; padding-left: 56px; } }
.timeline__index {
	position: absolute; top: 0; left: 0; width: 40px; height: 40px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: .95rem;
	background: var(--surface); border: 1.5px solid var(--accent); color: var(--accent);
	transition: background .4s, color .4s;
}
.timeline__item:hover .timeline__index { background: var(--green-500); color: #06170a; border-color: var(--green-500); }
.timeline__body h3 { font-size: 1.18rem; margin-bottom: 10px; }
.timeline__body p { color: var(--text-dim); font-size: .93rem; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { background: var(--bg-soft); }
.testimonials__rating-bar { display: flex; align-items: center; gap: 16px; margin-bottom: 42px; padding: 18px 24px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--border); max-width: 560px; }
.testimonials__rating-bar .stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.testimonials__rating-bar p { color: var(--text-dim); font-size: .9rem; }
.testimonials__rating-bar strong { color: var(--text); }

.testimonials__viewport { overflow: hidden; margin: 0 -4px; cursor: grab; }
.testimonials__viewport:active { cursor: grabbing; }
.testimonials__track { display: flex; gap: 22px; will-change: transform; transition: transform .6s var(--ease-out); }

.t-card {
	flex: 0 0 clamp(280px, 32vw, 380px); padding: 32px; border-radius: var(--radius-md);
	background: linear-gradient(160deg, var(--surface), var(--surface-2)); border: 1px solid var(--border);
	box-shadow: 0 2px 10px -6px rgba(20,30,22,0.08);
	display: flex; flex-direction: column; gap: 18px;
	transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
}
.t-card:hover { transform: translateY(-6px); border-color: rgba(31,122,52,0.3); box-shadow: 0 16px 36px -18px rgba(20,30,22,0.22); }
.t-card__stars { color: var(--gold); letter-spacing: 3px; }
.t-card__text { color: var(--text); font-size: .98rem; line-height: 1.65; flex-grow: 1; }
.t-card__author { display: flex; align-items: center; gap: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.t-card__logo {
	width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: #06170a;
	background: linear-gradient(135deg, var(--c1, var(--green-500)), var(--c2, var(--green-300)));
}
.t-card__name { display: block; font-weight: 700; font-size: .92rem; }
.t-card__company { display: block; font-size: .8rem; color: var(--text-faint); margin-top: 2px; }

.testimonials__controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 40px; }
.t-nav { width: 46px; height: 46px; border-radius: 50%; background: var(--surface); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--accent); transition: background .3s, border-color .3s, transform .3s, color .3s; }
.t-nav:hover { background: var(--green-500); border-color: var(--green-500); color: #06170a; transform: scale(1.06); }
.t-dots { display: flex; gap: 8px; }
.t-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background .3s, transform .3s; }
.t-dots button.is-active { background: var(--accent); transform: scale(1.3); }

/* ==========================================================================
   CTA banner — stays a bold dark-green accent block within the light page
   ========================================================================== */
.cta-banner { padding: 100px 0; overflow: hidden; --text: #f6f9f4; --text-dim: #d7e6d8; color: var(--text); }
.cta-banner__bg {
	position: absolute; inset: 0;
	background:
		radial-gradient(60% 120% at 15% 30%, rgba(86,200,102,0.22), transparent 60%),
		radial-gradient(50% 100% at 85% 70%, rgba(217,181,106,0.14), transparent 60%),
		var(--green-900);
}
.cta-banner__inner { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cta-banner h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); max-width: 700px; color: var(--text); }
.cta-banner h2 em { color: var(--green-300); }
.cta-banner p { color: var(--text-dim); font-size: 1.05rem; }
.cta-banner .btn { margin-top: 10px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; gap: 50px; } }

.contact__list { display: flex; flex-direction: column; gap: 14px; margin: 32px 0; }
.contact__list li, .contact__list a { display: flex; align-items: center; gap: 14px; font-weight: 600; }
.contact__list a { transition: color .25s; }
.contact__list a:hover { color: var(--accent); }
.contact__icon { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--accent); flex-shrink: 0; }

.contact__owner { margin: -18px 0 22px; font-size: .85rem; color: var(--text-faint); font-weight: 600; }

.contact__social { display: flex; gap: 12px; }
.contact__social a { width: 42px; height: 42px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--accent); display: flex; align-items: center; justify-content: center; transition: background .3s, border-color .3s, transform .3s, color .3s; }
.contact__social a:hover { background: var(--green-500); border-color: var(--green-500); color: #06170a; transform: translateY(-3px); }

.contact__form { padding: 36px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); box-shadow: 0 20px 48px -24px rgba(20,30,22,0.2); display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

.field { position: relative; }
.field input, .field textarea, .field select {
	width: 100%; padding: 16px 16px; border-radius: var(--radius-sm); border: 1px solid var(--border);
	background: var(--bg-soft); color: var(--text); font-family: var(--font-body); font-size: .95rem;
	transition: border-color .3s, box-shadow .3s; resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(31,122,52,0.14); }
.field label {
	position: absolute; left: 16px; top: 16px; color: var(--text-faint); pointer-events: none;
	transition: transform .2s var(--ease-out), font-size .2s, color .2s; transform-origin: left top;
	background: var(--bg-soft); padding-inline: 4px;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
	transform: translateY(-24px) scale(0.82); color: var(--accent);
}
.field select { color: var(--text-dim); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2355645a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

.form-note { min-height: 20px; font-size: .85rem; color: var(--accent); font-weight: 600; }
.form-note.is-error { color: #c0432c; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { padding: 50px 0; border-top: 1px solid var(--border); }
.site-footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.site-footer__brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--accent); }
.site-footer__meta { display: flex; flex-direction: column; gap: 4px; }
.site-footer__copy { color: var(--text-faint); font-size: .85rem; }
.site-footer__address { color: var(--text-faint); font-size: .85rem; }
.site-footer__links { display: flex; gap: 20px; font-size: .85rem; color: var(--text-dim); font-weight: 600; }
.site-footer__links a:hover { color: var(--accent); }
@media (max-width: 720px) { .site-footer__inner { flex-direction: column; text-align: center; } .site-footer__meta { align-items: center; } }

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
	position: fixed; right: 24px; bottom: 90px; z-index: 400; width: 46px; height: 46px; border-radius: 50%;
	background: var(--surface); border: 1px solid var(--border); color: var(--accent);
	box-shadow: 0 8px 24px -12px rgba(20,30,22,0.25);
	display: flex; align-items: center; justify-content: center;
	opacity: 0; transform: translateY(10px) scale(.9); pointer-events: none;
	transition: opacity .3s, transform .3s, background .3s, color .3s;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-to-top:hover { background: var(--green-500); color: #06170a; }
@media (max-width: 720px) { .back-to-top { bottom: 84px; right: 16px; } }

/* ==========================================================================
   Misc / a11y
   ========================================================================== */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
