/* ========== HERO ========== */
.home-page {
	--home-section-space: clamp(2.1rem, 3.4vw, 2.85rem);
	--home-section-space-tight: clamp(1.35rem, 2.4vw, 1.85rem);
	overflow-x: clip;
}

.home-page>.section {
	padding: var(--home-section-space) 0;
}

.home-page .section-head {
	margin-bottom: clamp(1rem, 2vw, 1.45rem);
}

.home-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	color: var(--color-white);
	overflow: hidden;
	padding-bottom: 14rem;
}

.home-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(ellipse 58% 42% at 50% 31%, rgba(5, 31, 24, 0.34) 0%, rgba(5, 31, 24, 0.16) 46%, transparent 74%),
		linear-gradient(180deg, rgba(6, 38, 30, 0.18) 0%, transparent 30%, rgba(6, 38, 30, 0.08) 58%, rgba(15, 91, 70, 0.42) 100%);
	pointer-events: none;
}

.home-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.home-hero__bg {
	position: absolute;
	inset: -4%;
	background-image: var(--hero-mobile);
	background-size: cover;
	background-position: center 46%;
	filter: saturate(1.08) contrast(1.08) brightness(0.96);
	transform: scale(1.04);
	transform-origin: center center;
	animation: heroKenBurns 18s ease-in-out infinite alternate;
	will-change: transform;
}

@keyframes heroKenBurns {
	0% {
		transform: scale(1.04) translate3d(0, 0, 0);
	}

	100% {
		transform: scale(1.11) translate3d(-1.2%, -0.8%, 0);
	}
}

@media (min-width: 769px) {
	.home-hero__bg {
		background-image: image-set(var(--hero-hd-webp) type("image/webp") 1x,
				var(--hero-hd-jpg) type("image/jpeg") 1x);
	}
}

.home-hero__mesh {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 52% 42% at 50% 24%, rgba(255, 255, 255, 0.08), transparent 58%),
		radial-gradient(ellipse 65% 50% at 72% 38%, rgba(197, 168, 128, 0.13), transparent 55%),
		linear-gradient(180deg, rgba(250, 246, 240, 0.08) 0%, rgba(15, 91, 70, 0.18) 52%, rgba(15, 91, 70, 0.46) 100%);
}

.home-hero__halo {
	position: absolute;
	left: 50%;
	bottom: 11%;
	width: min(560px, 62vw);
	aspect-ratio: 1;
	border: 1px solid rgba(197, 168, 128, 0.22);
	border-radius: 50%;
	transform: translateX(-50%);
	filter: drop-shadow(0 0 24px rgba(197, 168, 128, 0.12));
	animation: haloDrift 12s ease-in-out infinite;
}

.home-hero__halo::before,
.home-hero__halo::after {
	content: '';
	position: absolute;
	inset: 9%;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.home-hero__halo::after {
	inset: 20%;
	border-color: rgba(197, 168, 128, 0.22);
}

.home-hero__sparkles {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.home-hero__sparkles span {
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--color-accent);
	box-shadow: 0 0 18px rgba(197, 168, 128, 0.9);
	animation: heroSparkle 4.8s ease-in-out infinite;
}

.home-hero__sparkles span:nth-child(1) {
	left: 26%;
	top: 34%;
}

.home-hero__sparkles span:nth-child(2) {
	left: 60%;
	top: 24%;
	animation-delay: 1.1s;
}

.home-hero__sparkles span:nth-child(3) {
	left: 73%;
	top: 47%;
	animation-delay: 2.2s;
}

.home-hero__sparkles span:nth-child(4) {
	left: 42%;
	top: 58%;
	animation-delay: 3.2s;
}

@keyframes haloDrift {

	0%,
	100% {
		transform: translateX(-50%) scale(1);
		opacity: 0.72;
	}

	50% {
		transform: translateX(-50%) scale(1.05);
		opacity: 1;
	}
}

@keyframes heroSparkle {

	0%,
	100% {
		opacity: 0;
		transform: translateY(14px) scale(0.55);
	}

	45%,
	60% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.home-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr;
	justify-items: center;
	text-align: center;
	padding: 7.5rem 0 0;
}

.home-hero__copy {
	position: relative;
	max-width: 980px;
	text-shadow: 0 4px 28px rgba(0, 0, 0, 0.34);
}

.home-hero__copy::before {
	content: '';
	position: absolute;
	inset: -2.4rem -3rem -1.8rem;
	z-index: -1;
	background: radial-gradient(ellipse at center, rgba(4, 31, 24, 0.42) 0%, rgba(4, 31, 24, 0.22) 45%, transparent 72%);
	filter: blur(8px);
	pointer-events: none;
}

.home-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.5rem 1rem 0.5rem 0.75rem;
	background: rgba(8, 43, 34, 0.34);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(12px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pulse-dot {
	width: 8px;
	height: 8px;
	background: var(--color-accent);
	border-radius: 50%;
	animation: pulse 2.2s ease infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.5);
	}

	50% {
		opacity: 0.85;
		transform: scale(1.15);
		box-shadow: 0 0 0 6px rgba(197, 168, 128, 0);
	}
}

.home-hero h1 {
	font-size: clamp(2.8rem, 5.8vw, 4.9rem);
	font-weight: 400;
	color: var(--color-white);
	text-shadow: 0 7px 30px rgba(0, 0, 0, 0.5), 0 1px 1px rgba(15, 91, 70, 0.42);
	line-height: 1.05;
	letter-spacing: 0.01em;
	margin-bottom: 1.15rem;
	text-transform: uppercase;
}

.home-hero h1 .line {
	display: block;
	overflow: hidden;
}

.home-hero h1 .line--accent {
	color: var(--color-white);
	font-style: italic;
}

.home-hero__kicker {
	font-size: clamp(0.75rem, 1.4vw, 0.95rem);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.98);
	margin-bottom: 0.55rem;
	text-shadow: 0 3px 18px rgba(0, 0, 0, 0.36);
}

.home-hero__lead {
	font-size: 0.98rem;
	color: rgba(255, 255, 255, 0.96);
	max-width: 600px;
	line-height: 1.65;
	margin: 0 auto 1.9rem;
	text-shadow: 0 3px 18px rgba(0, 0, 0, 0.38);
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.home-hero__panel {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.15rem;
	width: min(820px, 100%);
	margin-top: 3rem;
}

.hero-stat {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(6, 38, 30, 0.28)),
		rgba(6, 38, 30, 0.24);
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 20px;
	padding: 1.15rem 1.25rem;
	backdrop-filter: blur(22px) saturate(1.15);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 40px rgba(0, 0, 0, 0.13);
	transition: transform 0.45s var(--ease-out), border-color 0.45s, background 0.45s;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	text-align: center;
}

.hero-stat:hover {
	transform: translateY(-5px);
	border-color: rgba(197, 168, 128, 0.45);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(6, 38, 30, 0.32)),
		rgba(6, 38, 30, 0.28);
}

.hero-stat strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 500;
	color: var(--color-accent);
	line-height: 1;
	margin-bottom: 0.25rem;
}

.hero-stat span {
	font-size: var(--font-size-small);
	color: rgba(255, 255, 255, 0.92);
	font-weight: 500;
}

.hero-stat--text strong {
	font-size: var(--font-size-small);
	line-height: 1.35;
	color: #fff;
	margin-bottom: 0.25rem;
	font-weight: 500;
}

.hero-stat--text span {
	font-size: var(--font-size-small);
	color: var(--color-accent);
	font-weight: 600;
}

.hero-stat--highlight {
	padding: 1.15rem 1.25rem;
}

.hero-stat__label {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 0.75rem;
}

.hero-stat__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.hero-stat--highlight .hero-stat__tags {
	justify-content: center;
}

.hero-stat__tags span {
	font-size: 11px;
	padding: 0.35rem 0.7rem;
	background: rgba(197, 168, 128, 0.18);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.92);
}

.home-hero__scroll {
	position: absolute;
	bottom: 5.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 18;
	width: 30px;
	height: 48px;
	border: 1.5px solid rgba(197, 168, 128, 0.82);
	border-radius: 18px;
	background: rgba(250, 246, 240, 0.28);
	backdrop-filter: blur(4px);
	box-shadow: none;
	display: flex;
	justify-content: center;
	padding-top: 9px;
	transition: transform 0.35s var(--ease-out), border-color 0.35s, background 0.35s;
}

.home-hero__scroll:hover {
	transform: translateX(-50%) translateY(-3px);
	border-color: var(--color-accent);
	background: rgba(255, 255, 255, 0.36);
}

.home-hero__scroll span {
	width: 4px;
	height: 9px;
	background: var(--color-accent);
	border-radius: 3px;
	box-shadow: 0 0 8px rgba(197, 168, 128, 0.45);
	animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {

	0%,
	100% {
		transform: translateY(0);
		opacity: 1;
	}

	50% {
		transform: translateY(9px);
		opacity: 0.45;
	}
}

/* ========== SHOWCASE (Services + Listings) ========== */
.home-showcase {
	position: relative;
	z-index: 10;
	margin-top: -155px;
	padding: 0 0 var(--home-section-space-tight);
	background: linear-gradient(to bottom, transparent 0 94px, var(--color-bg-light) 94px 100%);
	overflow: hidden;
}

.home-showcase__curve {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 132px;
	z-index: 5;
	pointer-events: none;
	filter: drop-shadow(0 -8px 14px rgba(197, 168, 128, 0.12));
}

.home-showcase__curve svg {
	display: block;
	width: 100%;
	height: 100%;
}

.home-showcase::before {
	content: '';
	position: absolute;
	top: 62px;
	left: 50%;
	transform: translateX(-50%);
	width: min(720px, 92vw);
	height: 460px;
	background: radial-gradient(circle, rgba(197, 168, 128, 0.16) 0%, transparent 68%);
	pointer-events: none;
	z-index: 1;
}

.home-showcase .container {
	position: relative;
	z-index: 6;
	padding-top: 96px;
}

.home-showcase__panel {
	position: relative;
	overflow: hidden;
	padding: clamp(1.9rem, 3vw, 2.45rem) clamp(1.25rem, 3vw, 2.5rem) clamp(2rem, 3.5vw, 2.65rem);
	background: rgba(250, 246, 240, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 42px 42px 30px 30px;
	box-shadow: 0 18px 54px rgba(15, 91, 70, 0.1);
	backdrop-filter: blur(14px);
}

.showcase-head {
	position: relative;
	z-index: 1;
	text-align: center;
	margin-bottom: 2.35rem;
}

.showcase-head .eyebrow {
	display: block;
	margin-bottom: 0.75rem;
}

.showcase-head h2 {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 400;
	margin: 0;
}

/* Services — 3 columns */
.showcase-services {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: stretch;
	gap: 0;
	margin-bottom: 1.75rem;
}

.showcase-service {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	text-align: center;
	padding: 0.25rem clamp(1rem, 3vw, 2.25rem) 1rem;
	border-right: 1px solid rgba(15, 91, 70, 0.08);
	transition: transform 0.45s var(--ease-out);
}

.showcase-service:last-child {
	border-right: none;
}

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

.showcase-service__icon {
	width: 54px;
	height: 54px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	border: 1px solid rgba(197, 168, 128, 0.55);
	background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(245, 239, 228, 0.85) 100%);
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.45s var(--ease-spring), box-shadow 0.45s;
	box-shadow: 0 6px 18px rgba(197, 168, 128, 0.18);
}

.showcase-service:hover .showcase-service__icon {
	transform: scale(1.08);
	box-shadow: 0 10px 26px rgba(197, 168, 128, 0.32);
}

.showcase-service__icon svg {
	width: 22px;
	height: 22px;
}

.showcase-service h3 {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	font-weight: 500;
	margin-bottom: 0.55rem;
	color: var(--color-text-dark);
}

.showcase-service p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--color-text);
	margin-bottom: 1rem;
	max-width: 280px;
	margin-inline: auto;
	flex: 1;
}

.showcase-service .btn {
	margin-top: auto;
}

.btn--sm {
	padding: 0.65rem 1.5rem;
	font-size: 12px;
	letter-spacing: 0.06em;
}

.btn--wide {
	padding: 1rem 2.75rem;
	min-width: 240px;
}

/* Listings — 3-column horizontal cards */
.showcase-listings {
	position: relative;
	padding-top: 0.35rem;
}

.showcase-listings__glow {
	position: absolute;
	top: 34%;
	left: 50%;
	transform: translateX(-50%);
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(197, 168, 128, 0.24) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
	animation: glowPulse 5s ease-in-out infinite;
}

.listing-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.1rem;
}

.listing-card {
	display: grid;
	grid-template-columns: 124px 1fr;
	align-items: stretch;
	background: var(--color-white);
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(15, 91, 70, 0.06);
	box-shadow: 0 12px 32px rgba(15, 91, 70, 0.09);
	transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
	min-height: 132px;
}

.listing-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 42px rgba(15, 91, 70, 0.12);
}

.listing-card__thumb {
	overflow: hidden;
	min-height: 100%;
}

.listing-card__thumb img {
	width: 100%;
	height: 100%;
	min-height: 132px;
	object-fit: cover;
	transition: transform 0.6s var(--ease-out), filter 0.75s var(--ease-out);
}

.listing-card:hover .listing-card__thumb img {
	transform: scale(1.08);
}

.listing-card__info {
	padding: 1rem 1.05rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.listing-card__info h3 {
	font-family: var(--font-heading);
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 0.4rem;
	color: var(--color-text-dark);
	line-height: 1.35;
}

.listing-card__info>p {
	font-size: 12px;
	line-height: 1.55;
	color: var(--color-text);
	margin-bottom: 0.65rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.listing-card__meta {
	display: flex;
	align-items: baseline;
	gap: 0.65rem;
	flex-wrap: wrap;
}

.listing-card__meta strong {
	font-family: var(--font-heading);
	font-size: 1.12rem;
	font-weight: 600;
	color: var(--color-primary);
	line-height: 1;
}

.listing-card__meta span {
	font-size: 12px;
	font-weight: 600;
	color: var(--color-text-light, #8a9691);
}

.showcase-cta {
	text-align: center;
	margin-top: 2rem;
	position: relative;
	z-index: 1;
}

.reveal[data-reveal="slide"] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal[data-reveal="slide"].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes glowPulse {

	0%,
	100% {
		opacity: 0.55;
	}

	50% {
		opacity: 1;
	}
}

.bento-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 1.25rem;
}

.bento-card {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	padding: 2rem;
	border: 1px solid rgba(15, 91, 70, 0.06);
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.bento-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.bento-card--large {
	grid-row: span 2;
	background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	color: rgba(255, 255, 255, 0.9);
	border: none;
}

.bento-card--large h3,
.bento-card--large p,
.bento-card--large .link-arrow {
	color: var(--color-white);
}

.bento-card--large .link-arrow:hover {
	color: var(--color-accent);
}

.bento-card--large .bento-card__icon {
	background: rgba(255, 255, 255, 0.12);
	color: var(--color-accent);
}

.bento-card--large .mini-list li {
	color: rgba(255, 255, 255, 0.75);
}

.bento-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(15, 91, 70, 0.08);
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	transition: transform 0.4s var(--ease-spring);
}

.bento-card:hover .bento-card__icon {
	transform: scale(1.08) rotate(-3deg);
}

.bento-card__icon svg {
	width: 26px;
	height: 26px;
}

.bento-card h3 {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
}

.mini-list {
	list-style: none;
	padding: 0;
	margin: 1rem 0;
}

.mini-list li {
	font-size: 14px;
	padding-left: 1.25rem;
	position: relative;
	margin-bottom: 0.35rem;
}

.mini-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	background: var(--color-accent);
	border-radius: 50%;
}

/* ========== ABOUT ========== */
.home-page>.home-showcase+.home-about {
	padding-top: var(--home-section-space-tight);
}

.home-page>.home-about {
	padding-bottom: var(--home-section-space-tight);
}

.home-about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 4vw, 2.65rem);
	align-items: center;
}

.image-frame {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.image-frame img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	transition: transform 0.8s var(--ease-out), filter 0.75s var(--ease-out);
}

.image-frame:hover img {
	transform: scale(1.05);
}

.image-frame__accent {
	position: absolute;
	inset: 0;
	border: 2px solid rgba(197, 168, 128, 0.3);
	border-radius: var(--radius-lg);
	transform: translate(12px, 12px);
	pointer-events: none;
	z-index: -1;
}

.floating-card {
	position: absolute;
	bottom: -1rem;
	right: -1rem;
	background: var(--color-white);
	padding: 1.25rem 1.5rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	animation: float 4s ease-in-out infinite;
}

.floating-card strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 1.75rem;
	color: var(--color-primary);
}

.floating-card span {
	font-size: var(--font-size-small);
	font-weight: 600;
	color: var(--color-text);
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

.home-about__visual {
	position: relative;
}

.home-about__visual .image-frame {
	/* cursor: pointer; */
}

.feature-chips {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 2rem;
}

.chip {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: var(--color-white);
	border-radius: var(--radius);
	border: 1px solid rgba(15, 91, 70, 0.08);
	font-weight: 500;
	cursor: pointer;
	transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.chip:hover {
	transform: translateX(8px);
	border-color: var(--color-accent);
}

.chip span {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	color: var(--color-accent);
	min-width: 2rem;
}

/* ========== METRICS ========== */
.home-metrics {
	background: var(--color-primary);
	padding: var(--home-section-space-tight) 0;
}

.metrics-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	text-align: center;
	color: var(--color-white);
}

.metric strong {
	font-family: var(--font-heading);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 500;
	color: var(--color-accent);
	line-height: 1;
}

.metric span {
	font-family: var(--font-heading);
	font-size: 2rem;
	color: var(--color-accent);
}

.metric p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	margin-top: 0.5rem;
}

.metric--text {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1.5rem 1rem;
}

.metric--text p {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 500;
	color: var(--color-accent);
	line-height: 1.45;
	margin-top: 0;
}

/* ========== SPECIALIZATIONS ========== */
.spec-showcase {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.spec-panel {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	border: 1px solid rgba(15, 91, 70, 0.06);
	transition: transform 0.4s var(--ease-out);
}

.spec-panel:hover {
	transform: translateY(-6px);
}

.spec-panel--dark {
	background: var(--color-primary);
	color: rgba(255, 255, 255, 0.9);
}

.spec-panel--dark h3 {
	color: var(--color-white);
}

.spec-panel__num {
	font-family: var(--font-heading);
	font-size: 3rem;
	color: var(--color-accent);
	opacity: 0.5;
	line-height: 1;
	margin-bottom: 1rem;
}

.spec-panel ul {
	list-style: none;
	padding: 0;
	margin: 1.25rem 0;
}

.spec-panel li {
	padding: 0.4rem 0 0.4rem 1.25rem;
	position: relative;
	font-size: 14px;
}

.spec-panel li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--color-accent);
}

.dev-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.25rem;
}

.dev-pills span {
	font-size: 12px;
	font-weight: 600;
	padding: 0.4rem 0.85rem;
	background: rgba(15, 91, 70, 0.08);
	color: var(--color-primary);
	border-radius: 999px;
}

.spec-panel--dark .dev-pills span {
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-accent);
}

/* ========== TRUST ========== */
.home-trust {
	background: linear-gradient(180deg, var(--color-bg-green) 0%, #0e5240 100%);
	color: var(--color-white);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.trust-glass {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-lg);
	padding: 2rem;
	backdrop-filter: blur(12px);
	transition: transform 0.4s var(--ease-out), background 0.4s, border-color 0.4s;
}

.trust-glass:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(197, 168, 128, 0.3);
}

.trust-glass__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(197, 168, 128, 0.15);
	color: var(--color-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.trust-glass__icon svg {
	width: 24px;
	height: 24px;
}

.trust-glass h3 {
	color: var(--color-white);
	font-size: 1.35rem;
}

.trust-glass p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
}

/* ========== VISION ========== */
.home-vision {
	background:
		linear-gradient(180deg, rgba(197, 168, 128, 0.14) 0%, rgba(197, 168, 128, 0) 26%),
		var(--color-bg-light);
	color: var(--color-text);
	overflow: hidden;
	position: relative;
	border-top: 1px solid rgba(197, 168, 128, 0.26);
}

.home-vision__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
}

.home-vision__orb--1 {
	width: 400px;
	height: 400px;
	background: rgba(197, 168, 128, 0.2);
	top: -100px;
	right: -100px;
	animation: orbDrift 12s ease-in-out infinite;
}

.home-vision__orb--2 {
	width: 300px;
	height: 300px;
	background: rgba(15, 91, 70, 0.12);
	bottom: -50px;
	left: -50px;
	animation: orbDrift 15s ease-in-out infinite reverse;
}

@keyframes orbDrift {

	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(30px, -20px);
	}
}

.vision-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: clamp(1.5rem, 3vw, 2rem);
	position: relative;
	z-index: 1;
}

.vision-block {
	padding: clamp(1.6rem, 3vw, 2.35rem);
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(15, 91, 70, 0.07);
	border-left: 4px solid var(--color-accent);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

.vision-block h2 {
	color: var(--color-text-dark);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.vision-block p {
	color: var(--color-text);
}

.values-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	position: relative;
	z-index: 1;
}

.value-pill {
	padding: 1.5rem;
	border-radius: var(--radius);
	background: var(--color-primary);
	border: 1px solid rgba(197, 168, 128, 0.2);
	transition: border-color 0.3s;
	box-shadow: 0 14px 32px rgba(15, 91, 70, 0.09);
}

.value-pill:hover {
	border-color: var(--color-accent);
}

.value-pill h4 {
	color: var(--color-accent);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.value-pill p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	margin: 0;
}

/* ========== PROFILE ========== */
.profile-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: clamp(1.5rem, 3vw, 2rem);
	align-items: start;
}

.profile-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.profile-card {
	background: var(--color-white);
	border-radius: var(--radius);
	padding: 1.25rem 1.5rem;
	border: 1px solid rgba(15, 91, 70, 0.06);
	transition: transform 0.3s var(--ease-out);
}

.profile-card:hover {
	transform: scale(1.02);
}

.profile-card span {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 0.35rem;
}

.profile-card strong {
	font-size: 1rem;
	color: var(--color-text-dark);
}

.profile-card--wide {
	grid-column: span 2;
}

/* ========== TIMELINE ========== */
.home-process {
	overflow: hidden;
}

.timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.15rem;
	padding-top: 2.4rem;
	isolation: isolate;
	align-items: stretch;
}

.timeline::before {
	content: '';
	position: absolute;
	top: -14%;
	left: 50%;
	width: 560px;
	height: 260px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(197, 168, 128, 0.16) 0%, transparent 68%);
	pointer-events: none;
	z-index: -1;
}

.timeline__line {
	position: absolute;
	top: 2.82rem;
	left: 10%;
	right: 10%;
	height: 2px;
	background: rgba(15, 91, 70, 0.14);
	border-radius: 1px;
	overflow: hidden;
}

.timeline__progress {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
	background-size: 180% 100%;
	border-radius: 1px;
	box-shadow: 0 0 16px rgba(197, 168, 128, 0.32);
	transition: width 1.45s var(--ease-out);
	animation: timelineShimmer 3.2s ease-in-out infinite;
}

.timeline__step {
	position: relative;
	text-align: center;
	transition: transform 0.45s var(--ease-out);
	display: flex;
	flex-direction: column;
}

.timeline__dot {
	width: 16px;
	height: 16px;
	background: var(--color-bg-light);
	border: 3px solid rgba(197, 168, 128, 0.72);
	border-radius: 50%;
	margin: 0 auto 1.25rem;
	position: relative;
	z-index: 2;
	box-shadow: 0 0 0 7px rgba(197, 168, 128, 0.12);
	transition: transform 0.45s var(--ease-spring), background 0.45s, border-color 0.45s, box-shadow 0.45s;
}

.timeline__dot::after {
	content: '';
	position: absolute;
	inset: -9px;
	border-radius: 50%;
	border: 1px solid rgba(197, 168, 128, 0.32);
	opacity: 0;
	transform: scale(0.7);
	transition: opacity 0.45s, transform 0.45s;
}

.timeline__step.is-active .timeline__dot {
	background: var(--color-accent);
	border-color: var(--color-accent);
	transform: scale(1.12);
	box-shadow: 0 0 0 8px rgba(197, 168, 128, 0.16), 0 0 20px rgba(197, 168, 128, 0.36);
}

.timeline__step.is-active .timeline__dot::after {
	opacity: 1;
	transform: scale(1);
}

.timeline__card {
	flex: 1;
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border-radius: var(--radius);
	padding: 1.35rem 1.2rem;
	border: 1px solid rgba(15, 91, 70, 0.05);
	box-shadow: 0 12px 32px rgba(15, 91, 70, 0.06);
	text-align: left;
	min-height: 156px;
	opacity: 0.78;
	transform: translateY(10px);
	transition: transform 0.5s var(--ease-out), box-shadow 0.5s, border-color 0.5s, opacity 0.5s;
}

.timeline__step.is-active .timeline__card {
	opacity: 1;
	transform: translateY(0);
	border-color: rgba(197, 168, 128, 0.22);
	box-shadow: 0 18px 42px rgba(15, 91, 70, 0.1);
}

.timeline__step:hover .timeline__card {
	transform: translateY(-8px);
	box-shadow: 0 22px 48px rgba(15, 91, 70, 0.12);
}

.timeline__num {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	color: var(--color-accent);
	opacity: 0.65;
	transition: opacity 0.45s, color 0.45s;
}

.timeline__step.is-active .timeline__num {
	color: var(--color-primary);
	opacity: 0.9;
}

.timeline__card h3 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.timeline__card p {
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
	color: var(--color-text);
}

@keyframes timelineShimmer {

	0%,
	100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

/* ========== TEAM ========== */
.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.team-card {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.team-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
}

.team-card__image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3/4;
}

.team-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.6s var(--ease-out), filter 0.75s var(--ease-out);
}

.team-card:hover .team-card__image img {
	transform: scale(1.08);
}

.team-card__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 91, 70, 0.82);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s;
}

.team-card:hover .team-card__overlay {
	opacity: 1;
}

.team-card__overlay a {
	padding: 0.65rem 1.5rem;
	border: 1px solid var(--color-white);
	border-radius: 999px;
	color: var(--color-white);
	font-weight: 600;
	font-size: 13px;
	transition: background 0.3s;
}

.team-card__overlay a:hover {
	background: var(--color-white);
	color: var(--color-primary);
}

.team-card__body {
	padding: 1.5rem;
}

.team-card__body h3 {
	font-size: 1.35rem;
	margin-bottom: 0.25rem;
}

.team-card__role {
	color: var(--color-accent);
	font-weight: 600;
	font-size: var(--font-size-body-lg);
	margin-bottom: 0.75rem;
}

.team-card__body p:last-child {
	font-size: var(--font-size-body-lg);
	margin: 0;
	color: var(--color-text);
}

/* Premium image reveal: keep banner/logo untouched. */
.image-frame img,
.listing-card__thumb img {
	filter: grayscale(1) saturate(0) contrast(1.08) brightness(0.96);
}

.image-frame:hover img,
.home-about__visual:focus-within .image-frame img,
.listing-card:hover .listing-card__thumb img,
.listing-card:focus-within .listing-card__thumb img {
	filter: grayscale(0) saturate(1.08) contrast(1);
}

/* ========== CONSULTATION ========== */
.home-consultation {
	background: linear-gradient(135deg, var(--color-primary) 0%, #128564 50%, var(--color-primary) 100%);
	color: var(--color-white);
	position: relative;
	overflow: hidden;
}

.home-consultation::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 90% 10%, rgba(197, 168, 128, 0.15), transparent 40%);
	pointer-events: none;
}

.consultation-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.5rem, 3vw, 2rem);
	align-items: center;
	position: relative;
	z-index: 1;
}

.consultation-split__info h2 {
	color: var(--color-white);
}

.consultation-split__info p {
	color: rgba(255, 255, 255, 0.8);
}

.consult-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
}

.consult-list li {
	padding: 0.5rem 0 0.5rem 1.75rem;
	position: relative;
	color: rgba(255, 255, 255, 0.85);
	font-size: 15px;
}

.consult-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-accent);
	font-weight: 700;
}

.consultation-split__form {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	box-shadow: var(--shadow-lg);
}

.modern-form .form-field {
	margin-bottom: 1.25rem;
}

.modern-form label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-text-dark);
	margin-bottom: 0.5rem;
}

.modern-form input,
.modern-form select {
	width: 100%;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(15, 91, 70, 0.12);
	border-radius: 10px;
	font: inherit;
	background: var(--color-bg-light);
	transition: border-color 0.3s, box-shadow 0.3s;
}

.modern-form input:focus,
.modern-form select:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(15, 91, 70, 0.12);
}

.form-row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-success {
	background: rgba(15, 91, 70, 0.1);
	border: 1px solid var(--color-primary);
	color: var(--color-primary-dark);
	padding: 1rem;
	border-radius: 10px;
	margin-bottom: 1rem;
	text-align: center;
	font-weight: 600;
}

/* ========== COMPLIANCE ========== */
.home-compliance {
	position: relative;
	background: #06553d;
	padding: 1.35rem 0 1.15rem;
	border-top: 0;
}

.home-compliance::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #b3966e 0%, #c5a880 32%, #ffd166 50%, #c5a880 68%, #b3966e 100%);
	box-shadow: 0 0 12px rgba(197, 168, 128, 0.32);
}

.home-compliance::after {
	content: '';
	position: absolute;
	left: max(1.25rem, calc((100% - var(--container-max)) / 2));
	right: max(1.25rem, calc((100% - var(--container-max)) / 2));
	bottom: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
}

.compliance-strip {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
}

.compliance-strip strong {
	color: var(--color-white);
	display: block;
	margin-bottom: 0.25rem;
}

.compliance-strip__note {
	max-width: 420px;
	text-align: right;
	opacity: 0.82;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1180px) {
	.home-page {
		--home-section-space: clamp(1.95rem, 3vw, 2.55rem);
		--home-section-space-tight: clamp(1.15rem, 2vw, 1.55rem);
	}

	.home-hero h1 {
		font-size: clamp(2.7rem, 6vw, 4.35rem);
	}

	.home-hero__copy {
		max-width: 860px;
	}

	.home-hero__panel {
		width: min(760px, 100%);
	}

	.listing-grid {
		grid-template-columns: 1fr;
		max-width: 820px;
		margin-inline: auto;
	}

	.listing-card {
		grid-template-columns: 180px 1fr;
		min-height: 150px;
	}

	.listing-card__thumb img {
		min-height: 150px;
	}

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

	.bento-card--large {
		grid-row: auto;
		grid-column: span 2;
	}

	.timeline {
		grid-template-columns: repeat(3, 1fr);
	}

	.timeline__line {
		display: none;
	}
}

@media (max-width: 992px) {
	.home-page .section-head {
		margin-bottom: 2.25rem;
	}

	.home-hero {
		min-height: auto;
		padding: 8.75rem 0 10rem;
	}

	.home-hero__grid {
		padding: 0;
	}

	.home-hero__copy {
		max-width: 720px;
	}

	.home-hero__badge {
		margin-bottom: 1.1rem;
	}

	.home-hero__lead {
		max-width: 560px;
	}

	.home-hero__panel {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.8rem;
		width: min(700px, 100%);
		margin-top: 2.25rem;
	}

	.hero-stat {
		min-width: 0;
		padding: 1rem;
	}

	.hero-stat strong {
		font-size: 1.75rem;
	}

	.hero-stat__tags {
		justify-content: center;
	}

	.home-showcase {
		margin-top: -128px;
		background: linear-gradient(to bottom, transparent 0 82px, var(--color-bg-light) 82px 100%);
	}

	.home-showcase .container {
		padding-top: 62px;
	}

	.home-showcase__curve {
		height: 118px;
	}

	.home-showcase__panel {
		border-radius: 34px 34px 26px 26px;
		padding: 2.35rem 1.5rem 2.75rem;
	}

	.showcase-services {
		grid-template-columns: 1fr;
		gap: 0;
		margin-bottom: 2rem;
	}

	.showcase-service {
		border-right: none;
		border-bottom: 1px solid rgba(15, 91, 70, 0.08);
		padding: 1.35rem 1rem;
	}

	.showcase-service:last-child {
		border-bottom: none;
	}

	.home-about__grid,
	.vision-grid,
	.consultation-split,
	.profile-layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.home-about__visual {
		max-width: 560px;
		margin-inline: auto;
	}

	.image-frame img {
		aspect-ratio: 4 / 3.6;
	}

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

	.spec-showcase,
	.trust-grid,
	.values-row {
		grid-template-columns: 1fr;
	}

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

	.timeline {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding-top: 0.25rem;
	}

	.timeline::before {
		width: 360px;
		height: 360px;
		top: 10%;
	}

	.timeline__step {
		display: grid;
		grid-template-columns: 36px 1fr;
		gap: 1rem;
		text-align: left;
		align-items: start;
	}

	.timeline__dot {
		margin: 1.1rem auto 0;
	}

	.timeline__card {
		transform: translateY(0);
	}

	.floating-card {
		right: 1rem;
		bottom: -0.5rem;
	}
}

@media (max-width: 768px) {
	.home-page {
		--home-section-space: 2.15rem;
		--home-section-space-tight: 1.25rem;
	}

	.home-page>.section {
		padding: var(--home-section-space) 0;
	}

	.home-page h2 {
		font-size: clamp(2rem, 9vw, 2.65rem);
	}

	.home-page .section-head {
		margin-bottom: 1.25rem;
		text-align: left;
	}

	.home-page .section-head p {
		font-size: 0.98rem;
	}

	.home-hero {
		min-height: auto;
		padding: 7.25rem 0 6.25rem;
	}

	.home-hero__bg {
		inset: 0;
		background-position: center top;
	}

	.home-hero::before {
		background:
			radial-gradient(ellipse 78% 42% at 50% 28%, rgba(5, 31, 24, 0.42) 0%, rgba(5, 31, 24, 0.24) 52%, transparent 78%),
			linear-gradient(180deg, rgba(6, 38, 30, 0.34) 0%, rgba(15, 91, 70, 0.3) 56%, rgba(15, 91, 70, 0.64) 100%);
	}

	.home-hero__halo {
		width: 88vw;
		bottom: 20%;
		opacity: 0.65;
	}

	.home-hero__sparkles {
		display: none;
	}

	.home-hero h1 {
		font-size: clamp(2.35rem, 12vw, 3.55rem);
		line-height: 1.05;
		letter-spacing: 0.005em;
	}

	.home-hero__kicker {
		font-size: 0.76rem;
		letter-spacing: 0.1em;
		line-height: 1.5;
	}

	.home-hero__lead {
		font-size: 0.98rem;
		line-height: 1.65;
		margin-bottom: 1.45rem;
	}

	.home-hero__actions {
		flex-direction: column;
		align-items: stretch;
		width: min(330px, 100%);
		margin-inline: auto;
	}

	.home-hero__actions .btn {
		width: 100%;
	}

	.home-hero__panel {
		grid-template-columns: 1fr;
		width: min(340px, 100%);
		margin-top: 1.6rem;
	}

	.hero-stat {
		padding: 0.9rem 1rem;
	}

	.hero-stat strong {
		font-size: 1.65rem;
	}

	.home-hero__scroll {
		display: none;
	}

	.home-showcase {
		margin-top: -72px;
		background: linear-gradient(to bottom, transparent 0 74px, var(--color-bg-light) 74px 100%);
	}

	.home-showcase .container {
		padding-top: 62px;
	}

	.home-showcase__curve {
		height: 78px;
		opacity: 0.96;
	}

	.home-showcase::before {
		top: 61px;
		width: 82px;
		height: 82px;
		border: 1px solid rgba(197, 168, 128, 0.34);
		border-radius: 50%;
		background:
			radial-gradient(circle, rgba(197, 168, 128, 0.28) 0 4px, transparent 5px),
			radial-gradient(circle, rgba(250, 246, 240, 0.8) 0%, rgba(250, 246, 240, 0) 70%);
		box-shadow: 0 0 22px rgba(197, 168, 128, 0.12);
	}

	.home-showcase__panel {
		border-radius: 24px 24px 20px 20px;
		padding: 1.75rem 1rem 2.15rem;
	}

	.showcase-head {
		margin-bottom: 1.5rem;
	}

	.showcase-service p {
		max-width: 100%;
		font-size: var(--font-size-body-lg);
		line-height: 1.65;
	}

	.listing-card {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.listing-card__thumb img {
		min-height: 190px;
		aspect-ratio: 16 / 10;
	}

	.listing-card__info {
		padding: 1.15rem;
	}

	.listing-card__info h3 {
		font-size: 1rem;
	}

	.listing-card__info>p {
		font-size: 0.92rem;
		line-height: 1.6;
	}

	.listing-card__meta span {
		font-size: 0.82rem;
	}

	.bento-grid,
	.spec-showcase,
	.trust-grid,
	.vision-grid,
	.profile-layout,
	.consultation-split,
	.team-grid,
	.values-row,
	.metrics-grid {
		grid-template-columns: 1fr;
	}

	.bento-card,
	.spec-panel,
	.trust-glass,
	.value-pill,
	.consultation-split__form {
		padding: 1.4rem;
	}

	.bento-card--large {
		grid-column: auto;
	}

	.home-about__grid {
		gap: 2rem;
	}

	.image-frame img {
		aspect-ratio: 4 / 3;
	}

	.image-frame__accent {
		transform: translate(7px, 7px);
	}

	.floating-card {
		right: 0.75rem;
		bottom: 0.75rem;
		padding: 1rem 1.15rem;
	}

	.feature-chips {
		margin-top: 1.5rem;
	}

	.chip {
		align-items: flex-start;
		padding: 0.95rem 1rem;
	}

	.metric strong {
		font-size: 2.4rem;
	}

	.profile-cards {
		grid-template-columns: 1fr;
	}

	.profile-card--wide {
		grid-column: auto;
	}

	.timeline {
		position: relative;
		gap: 0.9rem;
		padding-left: 0.2rem;
	}

	.timeline::after {
		content: '';
		position: absolute;
		top: 1.35rem;
		bottom: 1.35rem;
		left: 15px;
		width: 1px;
		background: linear-gradient(180deg, rgba(197, 168, 128, 0.12), rgba(197, 168, 128, 0.58), rgba(197, 168, 128, 0.12));
	}

	.timeline__step {
		grid-template-columns: 30px minmax(0, 1fr);
		gap: 0.75rem;
		align-items: start;
	}

	.timeline__dot {
		width: 13px;
		height: 13px;
		border-width: 2px;
		margin-top: 1.05rem;
		box-shadow: 0 0 0 5px rgba(197, 168, 128, 0.12);
	}

	.timeline__card {
		padding: 1rem;
		border-radius: 14px;
		box-shadow: 0 10px 26px rgba(15, 91, 70, 0.07);
	}

	.timeline__num {
		font-size: 1.2rem;
	}

	.timeline__card h3 {
		font-size: 1.08rem;
		margin-bottom: 0.45rem;
	}

	.timeline__card p {
		font-size: 0.94rem;
		line-height: 1.6;
	}

	.team-card__image {
		aspect-ratio: 3 / 4;
	}

	.team-card__body p:last-child {
		font-size: var(--font-size-body-lg);
		line-height: 1.65;
	}

	.form-row-2 {
		grid-template-columns: 1fr;
	}

	.consultation-split__form {
		border-radius: 18px;
	}

	.home-compliance {
		padding: 1.2rem 0 1rem;
	}

	.compliance-strip {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		gap: 1rem;
		font-size: 13px;
	}

	.compliance-strip__note {
		max-width: 100%;
		text-align: left;
	}
}

@media (max-width: 520px) {
	.home-page {
		--home-section-space: 1.95rem;
		--home-section-space-tight: 1.1rem;
	}

	.home-hero {
		padding: 6.6rem 0 5.8rem;
	}

	.home-hero__badge {
		font-size: 9px;
		letter-spacing: 0.08em;
		padding: 0.45rem 0.75rem;
	}

	.home-hero h1 {
		font-size: clamp(2.15rem, 13vw, 3rem);
	}

	.home-hero__kicker {
		font-size: var(--font-size-small);
	}

	.home-hero__lead {
		font-size: var(--font-size-body-lg);
	}

	.home-hero__scroll {
		width: 28px;
		height: 44px;
		bottom: 3.25rem;
	}

	.home-showcase {
		margin-top: -58px;
		background: linear-gradient(to bottom, transparent 0 64px, var(--color-bg-light) 64px 100%);
	}

	.home-showcase .container {
		padding-top: 52px;
	}

	.home-showcase__curve {
		height: 66px;
	}

	.home-showcase::before {
		top: 51px;
		width: 66px;
		height: 66px;
	}

	.home-showcase__panel {
		padding-inline: 0.9rem;
	}

	.showcase-head h2 {
		font-size: 2rem;
	}

	.showcase-service {
		padding-inline: 0.25rem;
	}

	.listing-card__thumb img {
		min-height: 170px;
	}

	.btn--wide {
		min-width: 0;
		width: 100%;
	}

	.footer-grid,
	.metrics-grid,
	.profile-cards {
		gap: 1.2rem;
	}

	.timeline {
		padding-left: 0;
	}

	.timeline::after {
		left: 14px;
	}

	.timeline__step {
		grid-template-columns: 28px minmax(0, 1fr);
		gap: 0.65rem;
	}

	.timeline__card {
		padding: 0.95rem;
	}
}

@media (hover: none) {

	.image-frame img,
	.listing-card__thumb img {
		filter: grayscale(0) saturate(1.04) contrast(1);
	}
}

@media (hover: hover) and (pointer: fine) {


	.listing-card,
	.team-card,
	.bento-card,
	.spec-panel,
	.trust-glass,
	.value-pill,
	.profile-card {
		cursor: pointer;
	}
}

@media (prefers-reduced-motion: reduce) {

	.home-hero__bg,
	.home-hero__halo,
	.home-hero__sparkles span,
	.showcase-listings__glow,
	.floating-card,
	.home-vision__orb {
		animation: none;
	}
}