/* DietSuchi — one-page home */

:root {
	--orange: #ed9221;
	--green: #467c2b;
	--mint: #f1f9f6;
	--black: #000000;
	--white: #ffffff;
	--green-950: #467c2b;
	--green-900: #467c2b;
	--green-800: #467c2b;
	--green-700: #467c2b;
	--green-500: #467c2b;
	--green-400: #ed9221;
	--green-100: #f1f9f6;
	--cream: #f1f9f6;
	--sand: #f1f9f6;
	--terracotta: #ed9221;
	--ink: #000000;
	--muted: rgba(0, 0, 0, 0.55);
	--shadow: 0 18px 44px rgba(237, 146, 33, 0.16);
	--radius: 22px;
	--header: 72px;
	--font-display: "Cormorant Garamond", Georgia, serif;
	--font-body: "Plus Jakarta Sans", system-ui, sans-serif;
	--container: 1180px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	scrollbar-width: thin;
	scrollbar-color: var(--green) var(--mint);
}

::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: var(--mint);
}

::-webkit-scrollbar-thumb {
	background: var(--green);
	border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--orange);
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--cream);
	line-height: 1.7;
	overflow-x: hidden;
}

body::before {
	display: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 0.5em;
}

p {
	margin: 0 0 1em;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.container {
	width: min(var(--container), calc(100% - 40px));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.skip-link:focus {
	position: fixed;
	left: 16px;
	top: 16px;
	z-index: 10000;
	width: auto;
	height: auto;
	clip: auto;
	margin: 0;
	padding: 10px 16px;
	background: var(--white);
	color: var(--green-900);
}

.section {
	position: relative;
	padding: 110px 0;
	overflow: hidden;
}

.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--orange);
}

.section-eyebrow::before {
	content: "";
	width: 22px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--green), var(--orange));
	animation: pulse-line 2.4s ease-in-out infinite;
}

.section-head {
	max-width: 640px;
	margin: 0 auto 56px;
	text-align: center;
}

.section-head h2,
.about-copy h2,
.faq-intro h2,
.hero-content h1,
.page-hero h1 {
	font-size: clamp(2.1rem, 4vw, 3.4rem);
	color: var(--green-950);
}

.section-head p,
.about-copy > p,
.faq-intro p,
.hero-lead {
	color: var(--muted);
	font-size: 1.05rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 30px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.95rem;
	border: 1px solid transparent;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease, box-shadow 0.25s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.btn::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.35) 45%, transparent 70%);
	transform: translateX(-120%);
	transition: transform 0.6s ease;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(70, 124, 43, 0.22);
}

.btn:hover::after {
	transform: translateX(120%);
}

.btn-primary {
	background: var(--orange);
	color: var(--white);
}

.btn-primary:hover {
	background: var(--green);
	color: var(--white);
}

.btn-ghost {
	background: var(--white);
	color: var(--green);
	border-color: var(--green);
}

.btn-ghost:hover {
	background: var(--green);
	color: var(--white);
}

.btn-green {
	background: var(--green);
	color: var(--white);
	box-shadow: 0 12px 28px rgba(70, 124, 43, 0.28);
}

.btn-green:hover {
	background: var(--orange);
	color: var(--white);
	box-shadow: 0 14px 30px rgba(237, 146, 33, 0.38);
}

.btn-light {
	background: var(--white);
	color: var(--green-900);
}

.btn-sm {
	padding: 10px 18px;
	font-size: 0.85rem;
}

.text-link {
	font-weight: 600;
	color: var(--green);
	border-bottom: 1px solid currentColor;
}

.text-link:hover {
	color: var(--orange);
}

/* Header — white + black only */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--white);
	border-bottom: 0;
	box-shadow: none;
}

.site-header::after {
	display: none;
}

.site-header.is-scrolled {
	box-shadow: none;
}

.site-header .logo-text,
.site-header .logo-text span {
	color: var(--black);
}

.site-header .primary-nav a,
.site-header .nav-menu a,
.site-header .nav-menu a:link,
.site-header .nav-menu a:visited,
.site-header .nav-menu a:hover,
.site-header .nav-menu a:focus,
.site-header .nav-menu a.is-active {
	color: #000000;
}

.site-header .nav-menu a::after {
	background: #000000;
}

.site-header .header-phone {
	color: var(--black);
}

.site-header .header-actions .btn {
	background: var(--orange);
	color: var(--white);
	border: 0;
	padding: 10px 18px;
	min-width: 0;
	border-radius: 999px;
	box-shadow: none;
	font-size: 0.85rem;
}

.site-header .header-actions .btn::after {
	display: none;
}

.site-header .header-actions .btn:hover {
	background: var(--green);
	color: var(--white);
	box-shadow: none;
	transform: none;
}

.nav-toggle span {
	background: var(--black);
}

.admin-bar .site-header {
	top: 32px;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header);
	gap: 24px;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
}

.site-logo .brand-logo,
.custom-logo-link img {
	height: 56px;
	width: auto;
	display: block;
}

.site-footer .brand-logo {
	height: 104px;
}

.logo-mark {
	display: grid;
	animation: leaf-sway 5s ease-in-out infinite;
}

.logo-text {
	font-family: var(--font-display);
	font-size: 1.55rem;
	color: var(--green-950);
}

.logo-text span,
.logo-text.light span {
	color: var(--orange);
}

.logo-text.light {
	color: var(--white);
}

.custom-logo-link img {
	max-height: 48px;
	width: auto;
}

.nav-menu {
	display: flex;
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu a {
	font-size: 0.92rem;
	font-weight: 500;
	color: #000000;
	position: relative;
}

.nav-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0;
	height: 2px;
	background: var(--green-400);
	transition: width 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a.is-active::after {
	width: 100%;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header-phone {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--black);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 42px;
	height: 42px;
	border: 0;
	background: transparent;
	padding: 10px;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	height: 2px;
	background: var(--black);
	border-radius: 2px;
}

/* Hero */
.hero {
	position: relative;
	min-height: auto;
	display: block;
	padding: 48px 0 70px;
	color: var(--ink);
	overflow: hidden;
	background: #eaf8f3;
}

.hero::before {
	display: none;
}

.brand-ribbon {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 36px;
	flex-wrap: wrap;
	padding: 16px 20px;
	background: var(--orange);
	color: var(--white);
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-size: 0.82rem;
}

.brand-ribbon span {
	position: relative;
}

.brand-ribbon span + span::before {
	content: "✦";
	position: absolute;
	left: -22px;
	color: var(--green);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px;
	align-items: center;
}

.hero-copy {
	position: relative;
	z-index: 1;
	max-width: 640px;
}

.hero-rating {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--white);
	border: 2px solid var(--orange);
	border-radius: 999px;
	padding: 10px 18px;
	box-shadow: 0 8px 24px rgba(237, 146, 33, 0.18);
	margin-bottom: 22px;
	font-weight: 700;
	color: var(--green);
}

.hero-stars {
	color: var(--orange);
	letter-spacing: 2px;
	font-size: 0.95rem;
}

.hero-copy h1,
.hero-content h1 {
	color: var(--green);
	margin-bottom: 18px;
	font-size: clamp(2.4rem, 4.6vw, 3.8rem);
	line-height: 1.12;
}

.hero-copy h1 span {
	color: var(--orange);
	font-weight: 700;
}

.hero-lead {
	color: var(--muted);
	max-width: 540px;
	font-size: 1.08rem;
	line-height: 1.75;
}

.hero-lead strong {
	color: var(--green);
	text-decoration: none;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 28px 0 0;
}

.hero-actions .btn {
	min-width: 180px;
}

.btn-orange {
	background: var(--orange);
	color: var(--white);
	min-width: 180px;
	box-shadow: 0 12px 28px rgba(237, 146, 33, 0.38);
}

.btn-orange:hover {
	background: var(--green);
	color: var(--white);
	box-shadow: 0 14px 30px rgba(70, 124, 43, 0.3);
}

.hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
}

.hero-photo {
	width: min(100%, 460px);
	border-radius: 46% 54% 42% 58% / 52% 40% 60% 48%;
	overflow: hidden;
	background: var(--mint);
	box-shadow: 0 24px 50px rgba(237, 146, 33, 0.2), 0 0 0 8px rgba(70, 124, 43, 0.12);
}

.hero-photo img {
	display: block;
	width: 100%;
	height: 560px;
	object-fit: cover;
	object-position: center 12%;
}

body.book-open {
	overflow: hidden;
}

.book-tab {
	position: fixed;
	right: 0;
	top: 50%;
	z-index: 55;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	transform: translateY(-50%);
	background: var(--green);
	color: var(--white);
	padding: 16px 11px 18px;
	border-radius: 14px 0 0 14px;
	font-weight: 800;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	box-shadow: -6px 8px 24px rgba(70, 124, 43, 0.28);
}

.book-tab span {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}

.book-tab:hover {
	background: var(--orange);
	color: var(--white);
}

.book-tab .wa-icon {
	width: 26px;
	height: 26px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #25d366;
	flex-shrink: 0;
}

body.book-open .book-tab {
	display: none;
}

.book-dialog {
	width: min(520px, calc(100vw - 28px));
	max-height: calc(100vh - 32px);
	margin: auto;
	border: 0;
	padding: 0;
	border-radius: 28px;
	background: var(--white);
	color: var(--ink);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
	overflow: auto;
}

.book-dialog::backdrop {
	background: rgba(0, 0, 0, 0.48);
}

.book-form {
	position: relative;
	padding: 32px 28px 28px;
}

.book-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 999px;
	background: var(--mint);
	color: var(--ink);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
}

.book-close:hover {
	background: var(--orange);
	color: var(--white);
}

.book-form .section-eyebrow {
	margin: 0 0 8px;
}

.book-form h2 {
	margin: 0 0 8px;
	font-family: var(--font-display);
	font-size: 2rem;
	line-height: 1.15;
}

.book-form h2::after {
	content: "";
	display: block;
	width: 52px;
	height: 6px;
	margin: 10px 0 0;
	border-radius: 999px;
	background: var(--orange);
}

.book-lead {
	margin: 0 0 18px;
	color: var(--muted);
}

.book-form label {
	display: block;
	margin: 0 0 12px;
}

.book-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.book-form label > span:first-child {
	display: block;
	margin: 0 0 6px;
	font-size: 0.82rem;
	font-weight: 700;
}

.book-field {
	position: relative;
	display: block;
}

.book-field-icon {
	position: absolute;
	left: 10px;
	top: 50%;
	z-index: 1;
	width: 26px;
	height: 26px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--orange);
	color: var(--white);
	transform: translateY(-50%);
	pointer-events: none;
}

.book-field-area .book-field-icon {
	top: 12px;
	transform: none;
}

.book-form input,
.book-form select,
.book-form textarea,
.book-form .wpcf7 input[type="text"],
.book-form .wpcf7 input[type="email"],
.book-form .wpcf7 input[type="tel"],
.book-form .wpcf7 input[type="date"],
.book-form .wpcf7 select,
.book-form .wpcf7 textarea {
	width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.14);
	border-radius: 14px;
	background: var(--white);
	color: var(--ink);
	padding: 12px 14px 12px 46px;
	font: inherit;
}

.book-form .wpcf7-form-control-wrap {
	display: block;
}

.book-form .wpcf7 p {
	margin: 0 0 12px;
}

.book-form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	color: var(--orange);
	font-size: 0.8rem;
	font-weight: 600;
}

.book-form .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
	display: block;
	margin: 10px 0 0;
	padding: 12px 14px;
	border: 0;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: normal;
	word-spacing: normal;
	white-space: normal;
}

.book-form .wpcf7-mail-sent-ok,
.book-form .wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
	color: var(--green);
	background: #f1f9f6;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	color: #9a3412;
	background: #fff7ed;
}

.book-form .wpcf7-submit {
	width: 100%;
	margin-top: 8px;
	border: 0;
}

.book-form .wpcf7 .wpcf7-spinner {
	margin: 8px auto 0;
}

.book-form .wpcf7-not-valid {
	border-color: var(--orange) !important;
}

.book-form .wpcf7 input::placeholder,
.book-form .wpcf7 textarea::placeholder {
	color: rgba(0, 0, 0, 0.38);
}

.book-form .wpcf7 form.submitting .wpcf7-submit {
	opacity: 0.7;
	pointer-events: none;
}


.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
	outline: 2px solid var(--green);
	outline-offset: 1px;
	background: var(--white);
}

.book-form textarea {
	resize: vertical;
	min-height: 96px;
}

.book-hp {
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
}

.book-submit {
	width: 100%;
	margin-top: 8px;
}

.book-submit-wa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #25d366;
	color: var(--white);
}

.book-submit-wa:hover {
	background: #1ebe57;
	color: var(--white);
}

.book-submit-wa .wa-icon {
	width: 22px;
	height: 22px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	flex-shrink: 0;
}

.book-submit:disabled {
	opacity: 0.7;
	cursor: wait;
}

.book-status {
	margin: 4px 0 10px;
	font-size: 0.9rem;
	font-weight: 600;
}

.book-status.is-success {
	color: var(--green);
}

.book-status.is-error {
	color: var(--orange);
}

.hero-stats {
	display: none;
}

/* About */
.about {
	background: var(--white);
}

.about-grid {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: 72px;
	align-items: center;
}

.about-visual {
	position: relative;
}

.about-photo {
	position: relative;
	z-index: 1;
	border-radius: 50%;
	overflow: hidden;
	min-height: 520px;
	aspect-ratio: 1;
	background: var(--white);
	box-shadow: 0 24px 50px rgba(237, 146, 33, 0.18);
}

.about-photo img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
	object-position: center 18%;
	transition: transform 1.2s ease;
}

.about-visual:hover .about-photo img {
	transform: scale(1.06);
}

.about-badge {
	position: absolute;
	left: 50%;
	bottom: 18px;
	z-index: 3;
	transform: translateX(-50%);
	background: var(--white);
	border: 2px solid var(--orange);
	padding: 12px 20px;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	max-width: 300px;
	text-align: center;
}

.about-badge strong,
.about-badge span {
	display: block;
}

.about-badge span {
	color: var(--muted);
	font-size: 0.85rem;
}

.about-points {
	display: grid;
	gap: 18px;
	margin-top: 28px;
}

.about-points article {
	padding: 18px 20px;
	background: var(--mint);
	border-radius: 16px;
	border-left: 5px solid var(--orange);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-points article:hover {
	transform: translateX(8px);
	box-shadow: var(--shadow);
}

.about-points h3 {
	font-size: 1.25rem;
	margin-bottom: 6px;
	color: var(--black);
}

.about-points h3::after {
	content: "";
	display: block;
	width: 40px;
	height: 4px;
	margin-top: 8px;
	border-radius: 999px;
	background: var(--orange);
}

.about-points p {
	margin: 0;
	color: var(--muted);
}

/* Services */
.services {
	background: var(--white);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.service-card {
	position: relative;
	background: var(--white);
	padding: 28px 26px 30px;
	border-radius: 28px 18px 32px 16px;
	border-top: 5px solid var(--orange);
	box-shadow: 0 12px 28px rgba(237, 146, 33, 0.12);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, opacity 0.45s ease;
	overflow: hidden;
}

.service-card::before {
	content: attr(data-index);
	position: absolute;
	top: 8px;
	right: 16px;
	font-family: var(--font-display);
	font-size: 3.2rem;
	line-height: 1;
	color: var(--green-800);
	opacity: 0.08;
}

.service-card::after {
	content: "";
	position: absolute;
	inset: auto -40% -40% auto;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--green-100), transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.services-grid .service-card:nth-child(even) {
	margin-top: 28px;
}

.service-card:hover {
	transform: translateY(-10px) rotate(-0.6deg);
	box-shadow: var(--shadow);
}

.service-card:hover::after,
.service-card.is-active::after {
	opacity: 1;
}

.service-icon {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
	background: var(--orange);
	color: var(--white);
	margin-bottom: 18px;
	transition: transform 0.45s ease, background 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon,
.service-card.is-active .service-icon {
	transform: rotate(-12deg) scale(1.08);
	background: var(--green);
	color: var(--white);
}

.service-card h3 {
	font-size: 1.4rem;
	color: var(--green);
}

.service-card p {
	margin: 0;
	color: var(--muted);
}

.services-slider .peek-viewport {
	overflow: hidden;
	padding: 18px 4px 32px;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
}

.services-slider .peek-viewport.is-dragging {
	cursor: grabbing;
}

.services-slider .service-card {
	flex: 0 0 min(38%, 340px);
	min-height: 280px;
	transform: scale(0.96);
	opacity: 1;
	box-shadow: 0 10px 24px rgba(70, 124, 43, 0.08);
}

.services-slider .service-card.is-active {
	transform: scale(1);
	opacity: 1;
	box-shadow: var(--shadow);
}

.services-slider .service-card:hover {
	transform: scale(0.98);
}

.services-slider .service-card.is-active:hover {
	transform: scale(1.03) rotate(0);
}

.services-slider .slider-meter.is-running span {
	animation-duration: 5.2s;
}

/* Testimonials */
.testimonials .section-head {
	margin-bottom: 40px;
}

.testimonials-slider {
	display: flex;
	align-items: center;
	gap: 18px;
}

.testimonials-slider .peek-viewport {
	flex: 1;
	overflow: hidden;
	max-width: none;
	margin: 0;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
	padding: 8px 4px 16px;
}

.testimonials-slider .peek-viewport.is-dragging {
	cursor: grabbing;
}

.testimonials-slider .peek-track {
	gap: 24px;
}

.testimonials-slider .testimonial-card {
	flex: 0 0 calc((100% - 48px) / 3);
	min-height: 240px;
	transform: none;
	opacity: 1;
	background: var(--white);
	color: var(--ink);
	border: 0;
	border-radius: 16px;
	padding: 28px 24px 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.testimonials-slider .testimonial-card blockquote {
	margin: 0 0 28px;
	font-family: var(--font-body);
	font-size: 0.98rem;
	line-height: 1.7;
	font-style: italic;
	flex: 1;
	color: var(--muted);
}

.testimonials-slider .testimonial-card footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
}

.testimonials-slider .testimonial-card footer strong {
	color: var(--black);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.testimonials-slider .stars {
	color: var(--orange);
	letter-spacing: 2px;
	font-size: 0.78rem;
	margin: 0;
}

.testimonials-arrow {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	background: var(--white);
	color: var(--green);
	border: 0;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	animation: none;
}

.testimonials-arrow::before {
	display: none;
}

.testimonials-arrow:hover {
	animation: none;
	background: var(--orange);
	color: var(--white);
}

@media (max-width: 980px) {
	.testimonials-slider .testimonial-card {
		flex-basis: calc((100% - 24px) / 2);
	}
}

@media (max-width: 680px) {
	.testimonials .section-head {
		margin-bottom: 18px;
	}

	.testimonials-slider {
		gap: 8px;
	}

	.testimonials-slider .peek-viewport {
		padding: 4px 2px 8px;
	}

	.testimonials-slider .testimonial-card {
		flex-basis: 100%;
		min-height: 0;
		padding: 14px 14px 12px;
	}

	.testimonials-slider .testimonial-card blockquote {
		margin: 0 0 10px;
		font-size: 0.86rem;
		line-height: 1.45;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		flex: none;
	}

	.testimonials-arrow {
		width: 32px;
		height: 32px;
	}

	.blog-slider .blog-card {
		flex-basis: 86%;
	}

	.blog-slider .blog-thumb,
	.blog-slider .blog-thumb-fallback,
	.blog-slider .blog-thumb img {
		height: 64px;
	}

	.blog-slider .blog-body {
		padding: 6px 8px 8px;
		gap: 2px;
	}

	.blog-slider .blog-body h3 {
		font-size: 0.86rem;
		line-height: 1.2;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		margin: 0;
	}

	.blog-slider .blog-body p {
		display: none;
	}

	.blog-slider .blog-body time {
		font-size: 0.66rem;
		letter-spacing: 0;
	}

	.blog-slider .blog-read-more {
		min-height: 26px;
		padding: 3px 10px;
		font-size: 0.7rem;
	}
}

.creative-slider {
	position: relative;
}

.coverflow-stage {
	position: relative;
	height: 340px;
	perspective: 1600px;
	margin: 0 auto 8px;
	touch-action: pan-y;
}

.coverflow-stage .slider-slide {
	position: absolute;
	top: 0;
	left: 50%;
	width: min(540px, 86vw);
	transform-origin: center center;
	transform: translateX(-50%) scale(0.7);
	opacity: 0;
	pointer-events: none;
	transition:
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.5s ease,
		filter 0.5s ease;
}

.testimonial-card {
	position: relative;
	background: var(--white);
	color: var(--ink);
	border: 0;
	border-top: 5px solid var(--orange);
	border-radius: 28px;
	padding: 24px 26px 22px;
	min-height: 280px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.testimonial-glow {
	position: absolute;
	inset: auto -20% -30% auto;
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, rgba(237, 146, 33, 0.16), transparent 70%);
	pointer-events: none;
}

.coverflow-stage .slider-slide.is-active,
.coverflow-stage .slider-slide[data-pos="0"] {
	transform: translateX(-50%) translateZ(60px) scale(1);
	opacity: 1;
	z-index: 5;
	pointer-events: auto;
	filter: none;
}

.coverflow-stage .slider-slide[data-pos="-1"] {
	transform: translateX(-108%) rotateY(18deg) scale(0.88);
	opacity: 1;
	z-index: 3;
	pointer-events: auto;
	filter: none;
}

.coverflow-stage .slider-slide[data-pos="1"] {
	transform: translateX(8%) rotateY(-18deg) scale(0.88);
	opacity: 1;
	z-index: 3;
	pointer-events: auto;
	filter: none;
}

.coverflow-stage .slider-slide[data-pos="-2"] {
	transform: translateX(-150%) rotateY(28deg) scale(0.78);
	opacity: 0.7;
	z-index: 1;
}

.coverflow-stage .slider-slide[data-pos="2"] {
	transform: translateX(50%) rotateY(-28deg) scale(0.78);
	opacity: 0.7;
	z-index: 1;
}

.testimonial-result {
	display: inline-flex;
	align-self: flex-start;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--orange);
	color: var(--white);
	font-weight: 700;
	font-size: 0.8rem;
	margin-bottom: 10px;
}

.stars {
	color: var(--orange);
	letter-spacing: 3px;
	font-size: 0.85rem;
	margin-bottom: 12px;
}

.testimonial-card blockquote {
	margin: 0 0 24px;
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	line-height: 1.45;
	font-style: italic;
	flex: 1;
	color: var(--ink);
}

.testimonial-card footer {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testimonial-avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--green);
	color: var(--white);
	font-weight: 700;
	box-shadow: 0 0 0 4px rgba(70, 124, 43, 0.15);
}

.testimonial-card footer strong {
	color: var(--green);
}

.testimonial-card footer span {
	display: block;
	font-size: 0.82rem;
	color: var(--muted);
}

.slider-ui {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-top: 8px;
}

.slider-btn {
	position: relative;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(70, 124, 43, 0.18);
	background: var(--white);
	color: var(--green);
	font-size: 1.5rem;
	cursor: pointer;
	transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.slider-btn::before {
	content: "";
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 2px solid var(--orange);
	pointer-events: none;
	animation: arrow-ring 2s ease-out infinite;
}

.slider-btn[data-next] {
	animation: arrow-nudge-next 1.8s ease-in-out infinite;
}

.slider-btn[data-prev] {
	animation: arrow-nudge-prev 1.8s ease-in-out infinite;
}

.slider-btn:hover {
	animation: none;
	transform: scale(1.1);
	background: var(--orange);
	color: var(--white);
	box-shadow: 0 8px 20px rgba(237, 146, 33, 0.35);
}

.slider-btn:hover::before {
	animation: none;
	opacity: 0;
}

.slider-btn-dark {
	border-color: rgba(70, 124, 43, 0.18);
	background: var(--white);
	color: var(--green);
}

.slider-btn-dark:hover {
	background: var(--orange);
	color: var(--white);
}

.slider-meter {
	width: 92px;
	height: 4px;
	border-radius: 99px;
	background: rgba(70, 124, 43, 0.12);
	overflow: hidden;
}

.slider-meter-dark {
	background: rgba(70, 124, 43, 0.12);
}

.slider-meter span {
	display: block;
	height: 100%;
	width: 0;
	background: var(--green-400);
	transform-origin: left center;
}

.slider-meter.is-running span {
	animation: meter-run 5.6s linear forwards;
}

.blog-slider .slider-meter.is-running span {
	animation-duration: 6.4s;
}

.slider-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 12px;
}

.slider-dots button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 0;
	background: rgba(70, 124, 43, 0.22);
	padding: 0;
	cursor: pointer;
	transition: width 0.3s ease, background 0.3s ease;
}

.slider-dots button.is-active {
	background: var(--green-400);
	width: 26px;
	border-radius: 999px;
}

.slider-dots-dark button {
	background: rgba(70, 124, 43, 0.22);
}

.slider-dots-dark button.is-active {
	background: var(--orange);
}

/* Blog */
.blog {
	background: var(--white);
}

.blog-slider .peek-viewport {
	overflow: hidden;
	padding: 8px 0 16px;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
}

.blog-slider .peek-viewport.is-dragging {
	cursor: grabbing;
}

.peek-track {
	display: flex;
	gap: 22px;
	transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.blog-slider .blog-card {
	flex: 0 0 calc((100% - 66px) / 4);
	background: var(--white);
	border: 1px solid rgba(70, 124, 43, 0.08);
	border-top: 4px solid var(--orange);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transform: none;
	opacity: 1;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
	box-shadow: 0 10px 24px rgba(70, 124, 43, 0.08);
}

.blog-slider .blog-card.is-active {
	transform: scale(1);
	opacity: 1;
	box-shadow: var(--shadow);
}

.blog-slider .blog-card.is-active .blog-thumb img {
	animation: image-reveal 0.9s ease;
}

.blog-thumb,
.blog-thumb-fallback {
	position: relative;
	display: block;
	height: 180px;
	overflow: hidden;
	background: var(--mint);
}

.blog-slider .blog-thumb,
.blog-slider .blog-thumb-fallback {
	height: 120px;
}

.blog-thumb img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.blog-slider .blog-thumb img {
	height: 120px;
}

.blog-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
	transform: translateX(-120%);
}

.blog-slider .blog-card.is-active .blog-shine {
	animation: shine-sweep 1.1s ease 0.15s;
}

.blog-card:hover .blog-thumb img {
	transform: scale(1.08);
}

.blog-slider .blog-body {
	padding: 12px 14px 14px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.blog-slider .blog-body h3 {
	font-size: 1.05rem;
	line-height: 1.3;
}

.blog-slider .blog-body p {
	font-size: 0.85rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-body {
	padding: 16px 16px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.blog-body time {
	font-size: 0.8rem;
	color: var(--orange);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 700;
}

.blog-body h3 {
	font-size: 1.35rem;
	color: var(--green);
}

.blog-body p {
	color: var(--muted);
	margin: 0;
}

.blog-body .text-link,
.blog-body .blog-read-more {
	margin-top: auto;
	align-self: flex-start;
}

.blog-read-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 16px;
	border: 0;
	letter-spacing: normal;
	word-spacing: normal;
	white-space: nowrap;
}

.blog-slider .blog-body time,
.blog-slider .blog-body h3,
.blog-slider .blog-body p {
	letter-spacing: normal;
	word-spacing: normal;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.blog-grid .blog-card {
	flex: none;
	transform: none;
	opacity: 1;
}

.empty-note {
	text-align: center;
	color: var(--muted);
}

/* FAQ */
.faq {
	background: var(--white);
}

.faq-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 60px;
	align-items: start;
}

.faq-item {
	border-bottom: 1px solid rgba(70, 124, 43, 0.12);
	transition: background 0.3s ease;
}

.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 20px 0;
	background: none;
	border: 0;
	text-align: left;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	color: var(--green);
}

.faq-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid var(--orange);
	position: relative;
	flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
	content: "";
	position: absolute;
	background: var(--orange);
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%);
}

.faq-icon::before {
	width: 12px;
	height: 2px;
}

.faq-icon::after {
	width: 2px;
	height: 12px;
}

.faq-item.is-open .faq-icon::after {
	display: none;
}

.faq-item.is-open {
	background: rgba(255, 255, 255, 0.55);
	border-radius: 16px;
	padding: 0 12px;
}

.faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s ease;
	color: var(--muted);
}

.faq-answer-inner {
	overflow: hidden;
}

.faq-item.is-open .faq-answer {
	grid-template-rows: 1fr;
}

.faq-answer p {
	padding: 0 36px 18px 0;
}

.faq-answer p {
	margin: 0;
}

/* Footer */
.site-footer {
	background: var(--mint);
	color: var(--muted);
	border-top: 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.9fr 0.75fr 1.1fr;
	gap: 40px;
	padding: 56px 0 40px;
	align-items: start;
}

.footer-brand p {
	margin-top: 14px;
	max-width: 280px;
	font-size: 0.92rem;
	line-height: 1.7;
}

.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.footer-social a {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--orange);
	color: var(--white);
}

.site-footer .brand-logo {
	height: 72px;
	width: 72px;
	object-fit: cover;
	border-radius: 50%;
	border: 2px solid var(--orange);
	background: var(--white);
	box-shadow: 0 8px 24px rgba(237, 146, 33, 0.12);
}

.site-footer h3 {
	color: var(--black);
	font-size: 1.05rem;
	font-family: var(--font-body);
	font-weight: 700;
	margin-bottom: 16px;
}

.site-footer h3::after {
	content: "";
	display: block;
	width: 48px;
	height: 5px;
	margin-top: 8px;
	border-radius: 999px;
	background: var(--orange);
}

.footer-links,
.footer-contact {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-contact a,
.footer-links a,
.footer-address a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--black);
}

.footer-contact li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-icon {
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--orange);
	color: var(--white);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-address a:hover {
	color: var(--orange);
}

.footer-map {
	width: 100%;
	max-width: 280px;
	border-radius: 12px;
	overflow: hidden;
	line-height: 0;
	background: var(--white);
	border: 2px solid var(--orange);
	box-shadow: 0 8px 24px rgba(237, 146, 33, 0.12);
}

.footer-map iframe {
	display: block;
	width: 100%;
	height: 160px;
	border: 0;
}

.footer-address {
	margin: 0 0 12px;
	max-width: 260px;
	font-size: 0.88rem;
	line-height: 1.55;
}

.footer-bottom {
	border-top: 1px solid rgba(70, 124, 43, 0.1);
	padding: 18px 0 28px;
	font-size: 0.85rem;
	color: var(--muted);
}

.page-hero {
	padding: 72px 0 24px;
	background: var(--mint);
	color: var(--green);
}

.page-hero h1 {
	color: var(--green);
}

.page-hero p {
	color: var(--muted);
}

.entry-content {
	max-width: 760px;
	background: var(--white);
	padding: 40px;
	border-radius: var(--radius);
}

.featured-image {
	border-radius: 16px;
	margin-bottom: 24px;
}

.pagination {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

@media (max-width: 1024px) {
	.about-grid,
	.faq-grid,
	.footer-grid,
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.services-grid,
	.blog-grid,
	.hero-stats {
		grid-template-columns: 1fr 1fr;
	}

	.header-phone {
		display: none;
	}

	.services-slider .service-card {
		flex-basis: 48%;
	}
}

@media (max-width: 768px) {
	.nav-toggle {
		display: flex;
	}

	.book-row {
		grid-template-columns: 1fr;
	}

	.primary-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: var(--white);
		padding: 12px 20px 24px;
		display: none;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	}

	.primary-nav.is-open {
		display: block;
	}

	.nav-menu {
		flex-direction: column;
		gap: 14px;
	}

	.site-header .header-actions .btn {
		padding: 8px 12px;
		font-size: 0.78rem;
	}

	.hero,
	.section {
		padding: 64px 0;
	}

	.hero {
		padding: 28px 0 40px;
	}

	.hero-photo {
		max-width: 420px;
		margin-inline: auto;
	}

	.hero-photo img {
		height: 460px;
	}

	.hero-stats,
	.services-grid,
	.blog-grid {
		grid-template-columns: 1fr;
	}

	.coverflow-stage {
		height: 220px;
	}

	.testimonial-card {
		min-height: 0;
		padding: 16px 16px 14px;
	}

	.testimonial-card blockquote {
		margin: 0 0 12px;
		font-size: 1.05rem;
		line-height: 1.35;
	}

	.coverflow-stage .slider-slide[data-pos="-1"],
	.coverflow-stage .slider-slide[data-pos="1"] {
		opacity: 0.55;
		filter: none;
		pointer-events: none;
	}

	.coverflow-stage .slider-slide[data-pos="-1"] {
		transform: translateX(-78%) scale(0.84);
	}

	.coverflow-stage .slider-slide[data-pos="1"] {
		transform: translateX(-22%) scale(0.84);
	}

	.blog-slider .blog-card {
		flex-basis: calc((100% - 22px) / 2);
	}

	.blog-slider .peek-viewport {
		padding: 4px 0 8px;
	}

	.blog-slider .blog-thumb,
	.blog-slider .blog-thumb-fallback,
	.blog-slider .blog-thumb img {
		height: 72px;
	}

	.blog-slider .blog-body {
		padding: 8px 8px 10px;
		gap: 3px;
	}

	.blog-slider .blog-body time {
		font-size: 0.68rem;
		letter-spacing: 0;
	}

	.blog-slider .blog-body h3 {
		font-size: 0.88rem;
		line-height: 1.2;
		margin: 0;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.blog-slider .blog-body p {
		display: none;
	}

	.blog-slider .blog-read-more {
		min-height: 28px;
		padding: 4px 12px;
		font-size: 0.72rem;
	}

	.testimonials .section-head {
		margin-bottom: 20px;
	}

	.testimonials-slider .testimonial-card {
		min-height: 0;
		padding: 14px 14px 12px;
	}

	.testimonials-slider .testimonial-card blockquote {
		margin: 0 0 10px;
		font-size: 0.84rem;
		line-height: 1.4;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		flex: none;
	}

	.about-photo,
	.about-photo img {
		min-height: 360px;
	}

	.service-card:nth-child(even) {
		margin-top: 0;
	}

	.services-slider .service-card {
		flex-basis: 82%;
		min-height: 260px;
	}

	.scroll-hint,
	.hero-leaves {
		display: none;
	}

	.marquee {
		font-size: 1.1rem;
	}
}

/* Reveal */
.reveal {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.42s; }

/* Organic blobs */
.blob {
	display: none;
}

.blob-about {
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(70, 124, 43, 0.12), transparent 70%);
	top: 40px;
	left: -80px;
}

.blob-services {
	width: 340px;
	height: 340px;
	background: radial-gradient(circle, rgba(237, 146, 33, 0.22), transparent 70%);
	right: -90px;
	top: 80px;
}

.blob-testimonial {
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(70, 124, 43, 0.22), transparent 70%);
	left: -120px;
	bottom: -80px;
}

.blob-blog {
	width: 260px;
	height: 260px;
	background: radial-gradient(circle, rgba(70, 124, 43, 0.16), transparent 70%);
	right: 8%;
	top: 40px;
}

.section > .container {
	position: relative;
	z-index: 1;
}

/* Marquee */
.marquee {
	display: none;
}

.marquee-track {
	display: flex;
	width: max-content;
	gap: 48px;
	animation: marquee 28s linear infinite;
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-style: italic;
	white-space: nowrap;
}

.marquee-track span {
	position: relative;
	padding-right: 48px;
}

.marquee-track span::after {
	content: "✦";
	position: absolute;
	right: 0;
	color: var(--terracotta);
}

/* Hero extras */
.hero-orbs,
.hero-leaves {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	background: radial-gradient(circle, rgba(70, 124, 43, 0.45), transparent 70%);
}

.orb-1 { width: 180px; height: 180px; right: 12%; top: 18%; animation: float-y 7s ease-in-out infinite; }
.orb-2 { width: 90px; height: 90px; right: 28%; bottom: 22%; animation: float-y 5s ease-in-out infinite reverse; }
.orb-3 { width: 140px; height: 140px; left: 46%; top: 12%; animation: float-y 9s ease-in-out infinite; }

.leaf {
	position: absolute;
	width: 18px;
	height: 28px;
	background: var(--green);
	border-radius: 80% 0 80% 0;
	opacity: 0.55;
	animation: drift 14s linear infinite;
}

.leaf-1 { left: 18%; top: -10%; animation-delay: 0s; }
.leaf-2 { left: 42%; top: -10%; animation-delay: 3s; width: 14px; height: 22px; background: var(--orange); }
.leaf-3 { left: 68%; top: -10%; animation-delay: 6s; background: var(--green); }
.leaf-4 { left: 84%; top: -10%; animation-delay: 9s; width: 12px; height: 20px; background: var(--orange); }

.scroll-hint {
	position: absolute;
	right: 40px;
	bottom: 40px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.scroll-hint::after {
	content: "";
	width: 1px;
	height: 42px;
	background: linear-gradient(180deg, var(--green-400), transparent);
	animation: scroll-line 1.8s ease-in-out infinite;
}

/* About extras */
.about-visual {
	isolation: isolate;
}

.about-ring {
	position: absolute;
	inset: -14px;
	border: 2px dashed var(--orange);
	border-radius: 50%;
	z-index: 0;
}

/* Testimonials extras */
.testimonials {
	background: #ed9221;
	overflow: hidden;
}

.testimonials .section-head h2 {
	color: var(--white);
}

.testimonials .section-head p,
.testimonials .section-eyebrow {
	color: var(--white);
}

.text-link {
	position: relative;
}

.text-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 1px;
	background: currentColor;
	transition: width 0.3s ease;
}

.text-link:hover::after {
	width: 100%;
}

@keyframes kenburns {
	from { transform: scale(1.08) translate3d(0, 0, 0); }
	to { transform: scale(1.18) translate3d(-2%, 2%, 0); }
}

@keyframes morph {
	0%, 100% { border-radius: 46% 54% 42% 58% / 52% 40% 60% 48%; }
	50% { border-radius: 58% 42% 62% 38% / 40% 58% 42% 60%; }
}

@keyframes float-y {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

@keyframes leaf-sway {
	0%, 100% { transform: rotate(-6deg); }
	50% { transform: rotate(8deg); }
}

@keyframes glow-border {
	0%, 100% { box-shadow: 0 0 0 0 rgba(70, 124, 43, 0.25); }
	50% { box-shadow: 0 0 0 8px rgba(70, 124, 43, 0); }
}

@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes drift {
	0% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0; }
	10% { opacity: 0.6; }
	100% { transform: translate3d(-80px, 110vh, 0) rotate(220deg); opacity: 0; }
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

@keyframes scroll-line {
	0% { transform: scaleY(0.4); transform-origin: top; opacity: 0.3; }
	50% { transform: scaleY(1); opacity: 1; }
	100% { transform: scaleY(0.4); transform-origin: bottom; opacity: 0.3; }
}

@keyframes pulse-line {
	0%, 100% { width: 22px; opacity: 1; }
	50% { width: 34px; opacity: 0.7; }
}

@keyframes meter-run {
	from { width: 0; }
	to { width: 100%; }
}

@keyframes card-pop {
	from { transform: translateX(-50%) scale(0.92); }
	to { transform: translateX(-50%) translateZ(60px) scale(1); }
}

@keyframes image-reveal {
	from { transform: scale(1.08); }
	to { transform: scale(1); }
}

@keyframes shine-sweep {
	from { transform: translateX(-120%); }
	to { transform: translateX(120%); }
}

@keyframes arrow-nudge-next {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(5px); }
}

@keyframes arrow-nudge-prev {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(-5px); }
}

@keyframes arrow-ring {
	0% { transform: scale(0.92); opacity: 0.5; }
	100% { transform: scale(1.28); opacity: 0; }
}

@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;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
	.hero-media img {
		transform: none;
	}
}

