:root {
	--bg: #f6f6f4;
	--text: #111111;
	--muted: #4b4b4b;
	--line: #dddddd;
	--anchor-offset: 6.5rem;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

.hero,
.services-section,
.faq-section,
.testimonials-section,
.contact-section {
	scroll-margin-top: var(--anchor-offset);
}

body {
	margin: 0;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: var(--text);
	background: radial-gradient(circle at 5% 0%, #ffffff 0%, var(--bg) 55%);
	min-height: 100vh;
}

.container {
	width: min(1160px, 92vw);
	margin: 0 auto;
}

.site-header {
	border-bottom: 1px solid var(--line);
	background-color: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(8px);
	position: sticky;
	top: 0;
	z-index: 30;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
	gap: 1rem;
}

.brand-link {
	display: inline-flex;
	align-items: center;
	gap: 0.62rem;
	font-size: clamp(1.1rem, 1rem + 0.8vw, 1.5rem);
	font-weight: 700;
	text-decoration: none;
	color: #000;
	letter-spacing: 0.02em;
}

.brand-mark {
	display: block;
	width: clamp(1.75rem, 1.35rem + 1vw, 2.35rem);
	height: clamp(1.75rem, 1.35rem + 1vw, 2.35rem);
	object-fit: contain;
	flex: 0 0 auto;
}

.brand-name {
	display: inline-block;
}

.nav-toggle {
	display: none;
	padding: 0.2rem 0.1rem;
	border: 0;
	background: transparent;
	color: #000;
	font: inherit;
	font-size: 0.92rem;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.18em;
	text-decoration-thickness: 0.07em;
	cursor: pointer;
}

.nav-list {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
}

.nav-list a {
	display: inline-block;
	padding: 0.2rem 0.1rem;
	color: #000;
	text-decoration: underline;
	text-underline-offset: 0.18em;
	text-decoration-thickness: 0.07em;
	font-weight: 600;
	font-size: 0.92rem;
	transition: opacity 220ms ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
	opacity: 0.65;
}

.hero {
	--hero-stack-gap: clamp(1.55rem, 3.2vw, 2.2rem);
	padding: var(--hero-stack-gap) 0 clamp(0.8rem, 2.5vw, 1.75rem);
}

.hero-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: var(--hero-stack-gap);
}

.hero-title {
	margin: 0;
	max-width: 16ch;
	font-size: clamp(3.2rem, 9vw, 7.8rem);
	line-height: 0.98;
	font-weight: 800;
	letter-spacing: -0.025em;
	display: flex;
	flex-direction: column;
	gap: 0.02em;
	min-height: 3em;
}

.hero-line {
	display: block;
	transform-origin: left center;
	animation: cmlFadeInUp 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-line strong,
.hero-line b {
	font-weight: 900;
	text-shadow: 0.018em 0 currentColor, -0.018em 0 currentColor;
	letter-spacing: -0.01em;
}

.hero-line em {
	font-style: italic;
}

.hero-line u {
	text-underline-offset: 0.1em;
	text-decoration-thickness: 0.08em;
	text-decoration-skip-ink: none;
}

.hero-title.is-swapping .hero-line {
	animation: cmlFadeOutUp 330ms cubic-bezier(0.4, 0, 1, 1) both;
}

.hero-scroll-btn {
	display: inline-block;
	padding: 0.08rem 0;
	color: #111;
	font-size: clamp(1.35rem, 2.8vw, 2.4rem);
	line-height: 1.05;
	font-weight: 720;
	letter-spacing: -0.025em;
	text-decoration: underline;
	text-underline-offset: 0.16em;
	text-decoration-thickness: 0.09em;
	transition: opacity 200ms ease, transform 200ms ease;
}

.hero-scroll-btn:hover,
.hero-scroll-btn:focus-visible {
	opacity: 0.65;
	transform: translateY(-1px);
}

.hero-phone-link {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.45rem;
	color: #111;
	text-decoration: none;
	font-size: clamp(1rem, 1.6vw, 1.22rem);
	line-height: 1.2;
}

.hero-phone-label {
	font-weight: 700;
}

.hero-phone-number {
	text-decoration: underline;
	text-underline-offset: 0.14em;
	text-decoration-thickness: 0.08em;
}

.hero-phone-link:hover,
.hero-phone-link:focus-visible {
	opacity: 0.65;
}

.services-section {
	padding: clamp(0.35rem, 1.8vw, 1rem) 0 clamp(4rem, 8vw, 7rem);
}

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

.service-card {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	--halo-x: 50%;
	--halo-y: 50%;
	--tilt-x: 0deg;
	--tilt-y: 0deg;
	--halo-opacity: 0;
	--service-raise: 0px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid #d7d7d7;
	border-radius: 18px;
	padding: 1.25rem 1.2rem;
	min-height: 248px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
	transform: perspective(1100px) translateY(var(--service-raise)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
	transform-style: preserve-3d;
	transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 260ms ease, background-color 260ms ease;
	will-change: transform;
}

.service-card::before {
	content: "";
	position: absolute;
	inset: -30%;
	background:
		radial-gradient(circle at var(--halo-x) var(--halo-y), rgba(17, 17, 17, 0.15) 0%, rgba(17, 17, 17, 0.08) 16%, rgba(17, 17, 17, 0.035) 32%, rgba(17, 17, 17, 0) 58%);
	opacity: var(--halo-opacity);
	transition: opacity 220ms ease;
	pointer-events: none;
	z-index: 0;
}

.service-card > * {
	position: relative;
	z-index: 1;
}

.service-card:hover,
.service-card:focus-within,
.service-card.is-pointer-active {
	--halo-opacity: 1;
	--service-raise: -8px;
	box-shadow: 0 20px 34px rgba(0, 0, 0, 0.08);
	border-color: #bcbcbc;
	background: rgba(255, 255, 255, 0.9);
}

.service-title {
	margin: 0 0 0.65rem;
	font-size: clamp(1.05rem, 1.45vw, 1.4rem);
	font-weight: 750;
	display: flex;
	align-items: center;
	gap: 0.45rem;
	letter-spacing: -0.01em;
}

.service-emoji {
	font-size: 1.2em;
	font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.service-copy {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
	color: #444;
}

.service-copy p,
.service-copy ul,
.service-copy ol {
	margin: 0 0 0.8rem;
}

.service-copy p:last-child,
.service-copy ul:last-child,
.service-copy ol:last-child {
	margin-bottom: 0;
}

.service-copy strong,
.service-copy b {
	font-weight: 800;
	color: #151515;
}

.service-copy u,
.service-copy span[style*="underline"] {
	text-underline-offset: 0.12em;
	text-decoration-thickness: 0.08em;
}

.service-copy a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.faq-section {
	padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.faq-intro {
	margin-bottom: 1.6rem;
}

.faq-heading {
	margin: 0;
	font-size: clamp(1.9rem, 3.8vw, 3.4rem);
	line-height: 1.02;
	letter-spacing: -0.03em;
}

.faq-list {
	display: grid;
	gap: 0.9rem;
}

.faq-item {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid #d7d7d7;
	border-radius: 18px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.035);
	overflow: hidden;
}

.faq-trigger {
	width: 100%;
	padding: 1.2rem 1.25rem;
	border: 0;
	background: transparent;
	color: #111;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	text-align: left;
	cursor: pointer;
	font: inherit;
}

.faq-question {
	font-size: clamp(1rem, 1.45vw, 1.3rem);
	font-weight: 680;
	letter-spacing: -0.015em;
}

.faq-arrow {
	flex: 0 0 auto;
	font-size: 1.1rem;
	transition: transform 280ms ease, opacity 280ms ease;
}

.faq-panel {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	transition: grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
}

.faq-panel-inner {
	overflow: hidden;
}

.faq-answer {
	padding: 0 1.25rem 0;
	font-size: 0.98rem;
	line-height: 1.65;
	color: #444;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
	margin: 0 0 0.8rem;
}

.faq-answer p:last-child,
.faq-answer ul:last-child,
.faq-answer ol:last-child {
	margin-bottom: 1.25rem;
}

.faq-answer strong,
.faq-answer b {
	font-weight: 800;
	color: #151515;
}

.faq-answer u,
.faq-answer span[style*="underline"] {
	text-underline-offset: 0.12em;
	text-decoration-thickness: 0.08em;
}

.faq-answer a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.faq-item.is-open .faq-panel {
	grid-template-rows: 1fr;
	opacity: 1;
}

.faq-item.is-open .faq-arrow {
	transform: rotate(90deg);
}

.testimonials-section {
	padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.testimonials-intro {
	margin-bottom: 1.5rem;
}

.testimonials-heading {
	margin: 0;
	font-size: clamp(1.9rem, 3.8vw, 3.4rem);
	line-height: 1.02;
	letter-spacing: -0.03em;
}

.testimonials-marquee {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
	mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.testimonials-track {
	display: flex;
	width: max-content;
	transform: translate3d(0, 0, 0);
	will-change: transform;
}

.testimonials-set {
	display: flex;
	gap: 1rem;
	padding-right: 1rem;
	padding-left: 1rem;
}

.testimonials-marquee.is-static {
	width: auto;
	margin-left: 0;
	margin-right: 0;
	-webkit-mask-image: none;
	mask-image: none;
}

.testimonials-marquee.is-static .testimonials-track {
	width: 100%;
	display: block;
	transform: none;
}

.testimonials-marquee.is-static .testimonials-set {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	padding-right: 0;
	padding-left: 0;
}

.testimonial-card {
	width: min(31rem, 76vw);
	min-height: 218px;
	padding: 1.35rem 1.3rem;
	border: 1px solid #d7d7d7;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonials-marquee.is-static .testimonial-card {
	width: min(31rem, 100%);
	flex: 1 1 18rem;
}

.contact-section {
	padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.contact-panel {
	padding: clamp(1.5rem, 4vw, 2.6rem);
	border: 1px solid #d7d7d7;
	border-radius: 26px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.045);
}

.contact-heading {
	margin: 0;
	max-width: 12ch;
	font-size: clamp(2.15rem, 4.6vw, 4.15rem);
	line-height: 0.98;
	letter-spacing: -0.03em;
}

.contact-copy {
	margin: 0.8rem 0 0;
	max-width: 33rem;
	font-size: clamp(1.02rem, 1rem + 0.5vw, 1.28rem);
	line-height: 1.5;
	color: #333;
}

.contact-copy u {
	text-underline-offset: 0.14em;
	text-decoration-thickness: 0.08em;
}

.contact-links {
	margin-top: 1.5rem;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	max-width: 46rem;
}

.contact-link {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 1rem 1rem 1.05rem;
	border: 1px solid #d8d8d8;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.78);
	color: #111;
	text-decoration: none;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
	transform: translateY(-3px);
	border-color: #bdbdbd;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

.contact-link-label {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #626262;
}

.contact-link-value {
	font-size: clamp(1.05rem, 1rem + 0.8vw, 1.45rem);
	font-weight: 700;
	line-height: 1.25;
	text-decoration: underline;
	text-decoration-thickness: 0.06em;
	text-underline-offset: 0.16em;
	text-wrap: balance;
	overflow-wrap: anywhere;
}

.site-footer {
	margin-top: clamp(1.5rem, 4vw, 3rem);
	padding: clamp(1.8rem, 4vw, 2.8rem) 0 1.2rem;
	border-top: 1px solid var(--line);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(246, 246, 244, 0.98) 100%);
}

.footer-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
	gap: 1.5rem 2rem;
	align-items: start;
}

.footer-branding {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-brand-link {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	width: fit-content;
	color: #000;
	text-decoration: none;
}

.footer-brand-mark {
	display: block;
	width: 1.95rem;
	height: 1.95rem;
	object-fit: contain;
	flex: 0 0 auto;
}

.footer-brand-name {
	font-size: clamp(1.05rem, 0.95rem + 0.55vw, 1.35rem);
	font-weight: 700;
	letter-spacing: 0.02em;
}

.footer-copy {
	max-width: 30rem;
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.65;
	color: var(--muted);
}

.footer-nav,
.footer-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.8rem;
}

.footer-nav a,
.footer-action-link {
	display: inline-block;
	color: #000;
	font-size: 0.96rem;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 0.07em;
	text-underline-offset: 0.18em;
	transition: opacity 220ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-action-link:hover,
.footer-action-link:focus-visible {
	opacity: 0.65;
}

.footer-meta {
	padding-top: 1.1rem;
	margin-top: 1.2rem;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-meta p {
	margin: 0;
	font-size: 0.9rem;
	color: #5b5b5b;
}

.testimonial-quote {
	font-size: 1rem;
	line-height: 1.65;
	color: #252525;
}

.testimonial-quote p {
	margin: 0 0 0.85rem;
}

.testimonial-quote p:last-child {
	margin-bottom: 0;
}

.testimonial-quote strong,
.testimonial-quote b {
	font-weight: 800;
}

.testimonial-quote u,
.testimonial-quote span[style*="underline"] {
	text-underline-offset: 0.12em;
	text-decoration-thickness: 0.08em;
}

.testimonial-quote a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.testimonial-meta {
	margin: 1rem 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	align-items: center;
	font-size: 0.92rem;
	color: #575757;
}

.testimonial-person {
	font-weight: 700;
	color: #111;
}

.testimonial-company {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.cml-reveal {
	opacity: 0;
	transform: translateY(26px) scale(0.99);
	transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0ms);
	will-change: transform, opacity;
}

.cml-reveal.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

@keyframes cmlFadeInUp {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes cmlFadeOutUp {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(-12px);
	}
}

@media (max-width: 760px) {
	:root {
		--anchor-offset: 5.75rem;
	}

	.header-inner {
		flex-wrap: wrap;
		align-items: center;
		padding: 0.85rem 0;
	}

	.brand-link {
		gap: 0.5rem;
	}

	.brand-mark {
		width: 1.7rem;
		height: 1.7rem;
	}

	.nav-toggle {
		display: inline-block;
	}

	.main-nav {
		width: 100%;
		max-height: 0;
		opacity: 0;
		overflow: hidden;
		pointer-events: none;
		transition: max-height 260ms ease, opacity 200ms ease, padding-top 200ms ease;
	}

	.site-header.is-nav-open .main-nav {
		max-height: 20rem;
		opacity: 1;
		pointer-events: auto;
		padding-top: 0.8rem;
	}

	.nav-list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.8rem;
	}

	.nav-list a {
		font-size: 1rem;
	}

	.hero {
		padding-top: var(--hero-stack-gap);
		padding-bottom: 0.4rem;
	}

	.hero-title {
		max-width: 13ch;
		font-size: clamp(2.6rem, 12vw, 5rem);
	}

	.hero-scroll-btn {
		font-size: clamp(1.15rem, 6vw, 1.75rem);
	}

	.hero-phone-link {
		font-size: 1rem;
	}

	.services-section,
	.faq-section,
	.testimonials-section,
	.contact-section {
		padding-bottom: 3.25rem;
	}

	.contact-panel {
		padding: 1.25rem 1rem;
	}

	.contact-heading {
		max-width: 14ch;
		font-size: clamp(1.65rem, 9vw, 2.6rem);
	}

	.contact-copy {
		margin-top: 0.7rem;
		font-size: 1rem;
	}

	.contact-links {
		grid-template-columns: 1fr;
		margin-top: 1.2rem;
	}

	.site-footer {
		margin-top: 0;
		padding-top: 1.45rem;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		gap: 1.15rem;
	}

	.footer-copy {
		max-width: none;
		font-size: 0.95rem;
	}

	.footer-nav,
	.footer-actions {
		gap: 0.7rem;
	}

	.footer-meta {
		padding-top: 0.95rem;
		margin-top: 1rem;
	}

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

	.service-card {
		--tilt-x: 0deg;
		--tilt-y: 0deg;
		--service-raise: 0px;
		min-height: 0;
		padding: 1.1rem 1rem;
	}

	.faq-trigger {
		padding: 1rem 1rem 0.95rem;
	}

	.faq-answer {
		padding: 0 1rem 0;
	}

	.testimonials-marquee {
		-webkit-mask-image: none;
		mask-image: none;
	}

	.testimonial-card {
		width: 84vw;
		min-height: 0;
		padding: 1.1rem 1rem;
	}

	.testimonials-marquee.is-static .testimonial-card {
		width: 100%;
		flex-basis: 100%;
	}

}

@media (prefers-reduced-motion: reduce) {
	.service-card {
		transform: translateY(0);
		transition: box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
	}

	.service-card::before {
		transition: opacity 180ms ease;
	}

	.service-card:hover,
	.service-card:focus-within,
	.service-card.is-pointer-active {
		--service-raise: 0px;
	}
}

@media (min-width: 761px) and (max-width: 1060px) {
	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-inner {
		grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
	}
}
