:root {
	--background: #f9f6f2;
	--foreground: #2d2926;
	--card: #f3eee7;
	--card-foreground: #2d2926;
	--popover: #f3eee7;
	--popover-foreground: #2d2926;
	--primary: #45745a;
	--primary-foreground: #f9f6f2;
	--secondary: #ebe5df;
	--secondary-foreground: #433c38;
	--muted: #ece8e2;
	--muted-foreground: #7a726c;
	--accent: #cb8f7f;
	--accent-foreground: #f9f6f2;
	--destructive: #ef4444;
	--destructive-foreground: #ffffff;
	--border: #ddd5cb;
	--input: #ddd5cb;
	--ring: #45745a;
	--willow-sage: #45745a;
	--willow-sage-light: #6a937c;
	--willow-cream: #f9f6f2;
	--willow-warm: #f0e9df;
	--willow-rose: #cb8f7f;
	--willow-earth: #634537;
	--sidebar-background: #f3eee7;
	--sidebar-foreground: #433c38;
	--sidebar-primary: #45745a;
	--sidebar-primary-foreground: #f9f6f2;
	--sidebar-accent: #ece8e2;
	--sidebar-accent-foreground: #433c38;
	--sidebar-border: #ddd5cb;
	--sidebar-ring: #45745a;
	--radius: 0.75rem;
	--header-height: 4.9rem;
	--container-width: 1120px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--background);
	color: var(--foreground);
	font-family: 'Inter', sans-serif;
	line-height: 1.45;
}

img,
video {
	display: block;
	max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Bree Serif', serif;
	margin: 0;
	line-height: 1.1;
}

p {
	margin: 0;
}

a,
button {
	color: inherit;
}

.ww-site-root {
	overflow-x: clip;
}

.ww-main {
	min-height: 100vh;
}

.ww-container {
	width: min(100% - 3rem, var(--container-width));
	margin-inline: auto;
}

.ww-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 90;
	border-bottom: 1px solid transparent;
	transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.ww-header.is-scrolled {
	background: color-mix(in srgb, var(--background) 95%, transparent);
	border-color: color-mix(in srgb, var(--border) 85%, transparent);
	box-shadow: 0 1px 0 color-mix(in srgb, var(--foreground) 8%, transparent), 0 18px 36px color-mix(in srgb, var(--foreground) 6%, transparent);
	backdrop-filter: blur(18px);
}

.ww-header-inner {
	height: var(--header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	width: min(100% - 3rem, var(--container-width));
	margin-inline: auto;
}

.ww-logo-button {
	border: 0;
	background: none;
	padding: 0;
	cursor: pointer;
	flex-shrink: 0;
}

.ww-header-logo {
	height: 3.5rem;
	width: auto;
	object-fit: contain;
}

.ww-desktop-nav {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.ww-nav-link {
	border: 0;
	cursor: pointer;
	background: none;
	font-size: 0.76rem;
	font-weight: 500;
	padding: 0.55rem 0.9rem;
	border-radius: 999px;
	color: color-mix(in srgb, var(--primary-foreground) 82%, transparent);
	transition: all 0.2s ease;
}

.ww-header.is-scrolled .ww-nav-link {
	color: color-mix(in srgb, var(--foreground) 70%, transparent);
}

.ww-nav-link:hover {
	background: color-mix(in srgb, var(--primary-foreground) 12%, transparent);
	color: var(--primary-foreground);
}

.ww-header.is-scrolled .ww-nav-link:hover {
	background: color-mix(in srgb, var(--foreground) 7%, transparent);
	color: var(--foreground);
}

.ww-nav-link.is-active {
	background: var(--primary);
	color: var(--primary-foreground);
}

.ww-header.is-scrolled .ww-nav-link.is-active {
	color: #ffffff;
}

.ww-header-cta-wrap {
	display: flex;
	align-items: center;
}

.ww-button {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	font-weight: 600;
	font-family: inherit;
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ww-button:hover {
	transform: translateY(-1px);
}

.ww-button:active {
	transform: translateY(0) scale(0.98);
}

.ww-button-primary {
	background: var(--primary);
	color: var(--primary-foreground);
	border-color: var(--primary);
}

.ww-button-primary:hover {
	background: var(--willow-sage-light);
	border-color: var(--willow-sage-light);
}

.ww-button-outline {
	background: color-mix(in srgb, transparent 80%, var(--primary-foreground) 20%);
	color: var(--primary-foreground);
	border-color: color-mix(in srgb, var(--primary-foreground) 42%, transparent);
}

.ww-button-outline:hover {
	background: color-mix(in srgb, var(--primary-foreground) 26%, transparent);
}

.ww-header-cta {
	height: 2rem;
	padding: 0 1.25rem;
	font-size: 0.76rem;
}

.ww-mobile-toggle {
	display: none;
	border: 0;
	background: none;
	cursor: pointer;
	padding: 0.35rem;
	color: var(--primary-foreground);
}

.ww-header.is-scrolled .ww-mobile-toggle {
	color: var(--foreground);
}

.ww-mobile-panel {
	position: absolute;
	top: 100%;
	right: 1.2rem;
	width: min(19rem, calc(100% - 2.4rem));
	border: 1px solid var(--border);
	border-radius: calc(var(--radius) + 0.2rem);
	background: var(--background);
	box-shadow: 0 25px 60px color-mix(in srgb, var(--foreground) 18%, transparent);
}

.ww-mobile-panel-inner {
	padding: 1.4rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ww-mobile-nav-link {
	border: 0;
	background: none;
	text-align: left;
	cursor: pointer;
	font-size: 1.08rem;
	color: color-mix(in srgb, var(--foreground) 80%, transparent);
	font-weight: 500;
}

.ww-mobile-nav-link:hover,
.ww-mobile-nav-link.is-active {
	color: var(--primary);
}

.ww-mobile-cta {
	height: 2.75rem;
	width: 100%;
}

.ww-icon {
	width: 1em;
	height: 1em;
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
}

.ww-icon-xs {
	font-size: 0.8rem;
}

.ww-icon-sm {
	font-size: 1rem;
}

.ww-icon-arrow {
	font-size: 1.2rem;
}

.ww-icon-lg {
	font-size: 1.7rem;
}

.ww-icon-menu {
	font-size: 1.6rem;
}

.ww-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: stretch;
	overflow: visible;
}

.ww-hero-media-layer {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.ww-hero-video,
.ww-hero-fallback-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ww-hero-fallback-image {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.ww-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(95deg, color-mix(in srgb, var(--willow-earth) 82%, transparent), color-mix(in srgb, var(--willow-earth) 54%, transparent) 55%, transparent);
}

.ww-hero-content-wrap {
	position: relative;
	z-index: 5;
	width: 100%;
	display: flex;
	align-items: center;
	padding-top: calc(var(--header-height) + 2.2rem);
}

.ww-hero-content {
	width: min(100% - 3rem, var(--container-width));
	margin-inline: auto;
	max-width: 47rem;
}

.ww-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.87rem;
	font-weight: 500;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	color: var(--primary-foreground);
	background: color-mix(in srgb, var(--primary) 20%, transparent);
	border: 1px solid color-mix(in srgb, var(--primary-foreground) 20%, transparent);
	backdrop-filter: blur(8px);
	overflow: visible;
}

.ww-hero-badge .ww-icon {
	overflow: visible;
	flex-shrink: 0;
	margin: 3px;
	box-sizing: content-box;
}

.ww-hero-title {
	margin-top: 1.05rem;
	font-size: clamp(2.2rem, 5vw, 4rem);
	color: var(--primary-foreground);
	letter-spacing: -0.01em;
	max-width: 40rem;
}

.ww-hero-description {
	margin-top: 1.2rem;
	max-width: 33rem;
	font-size: 1.1rem;
	line-height: 1.65;
	color: color-mix(in srgb, var(--primary-foreground) 82%, transparent);
}

.ww-hero-actions {
	margin-top: 1.9rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.ww-button-xl {
	min-height: 3rem;
	padding: 0.75rem 1.9rem;
	font-size: 0.98rem;
}

.ww-hero-curve {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	line-height: 0;
	z-index: 4;
}

.ww-hero-curve svg {
	width: 100%;
	height: clamp(3.7rem, 7vw, 5rem);
}

.ww-hero-curve path {
	fill: var(--background);
}

.ww-section {
	padding: clamp(4.2rem, 9vw, 6rem) 0;
}

.ww-about {
	background: var(--background);
}

.ww-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 3.2rem);
	align-items: center;
}

.ww-about-image-wrap {
	position: relative;
}

.ww-about-image {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 1.6rem;
	box-shadow: 0 20px 45px color-mix(in srgb, var(--foreground) 18%, transparent);
}

.ww-about-badge {
	position: absolute;
	right: -0.7rem;
	bottom: -0.7rem;
	background: var(--primary);
	color: var(--primary-foreground);
	padding: 0.75rem 1rem;
	border-radius: 0.9rem;
	box-shadow: 0 16px 30px color-mix(in srgb, var(--foreground) 14%, transparent);
	font-size: 0.8rem;
	font-family: 'Bree Serif', serif;
}

.ww-about-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ww-eyebrow {
	font-size: 0.74rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--primary);
}

.ww-section-title {
	font-size: clamp(2rem, 4vw, 2.8rem);
	color: var(--foreground);
}

.ww-title-accent {
	color: #457358;
	font-style: italic;
}

.ww-section-text {
	color: var(--muted-foreground);
	line-height: 1.75;
}

.ww-section-text-strong {
	color: color-mix(in srgb, var(--foreground) 82%, transparent);
	font-weight: 500;
}

.ww-values {
	background: var(--willow-warm);
}

.ww-section-head {
	text-align: center;
	margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.ww-section-subtitle {
	margin-top: 0.8rem;
	color: var(--muted-foreground);
	max-width: 36rem;
	margin-inline: auto;
}

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

.ww-card {
	background: var(--card);
	color: var(--card-foreground);
	border: 1px solid var(--border);
	border-radius: 1.2rem;
	padding: 1.8rem;
}

.ww-value-card {
	text-align: center;
	box-shadow: 0 1px 1px color-mix(in srgb, var(--foreground) 3%, transparent);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ww-value-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px color-mix(in srgb, var(--primary) 15%, transparent);
}

.ww-value-icon {
	width: 4rem;
	height: 4rem;
	border-radius: 999px;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background: color-mix(in srgb, var(--primary) 10%, transparent);
	color: var(--primary);
	margin-bottom: 1.15rem;
}

.ww-value-icon .ww-icon {
	display: block;
}

.ww-card-title {
	font-size: 1.35rem;
	margin-bottom: 0.8rem;
}

.ww-card-text {
	font-size: 0.92rem;
	line-height: 1.7;
	color: var(--muted-foreground);
}

.ww-services {
	background: var(--background);
}

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

.ww-service-card {
	border: 1px solid var(--border);
	background: var(--card);
	border-radius: 1.2rem;
	overflow: visible;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ww-service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 25px 50px color-mix(in srgb, var(--foreground) 12%, transparent);
}

.ww-service-image-wrap {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 1.2rem 1.2rem 0 0;
}

.ww-service-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.ww-service-card:hover .ww-service-image {
	transform: scale(1.08);
}

.ww-service-body {
	padding: 1.45rem;
	border-radius: 0 0 1.2rem 1.2rem;
	overflow: visible;
}

.ww-service-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.ww-service-list li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.9rem;
	color: var(--muted-foreground);
}

.ww-service-list li.ww-bullet-row-empty {
	display: none;
}

.ww-bullet-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	flex-shrink: 0;
	line-height: 1;
	overflow: visible;
	padding: 0.1rem;
	box-sizing: content-box;
}

.ww-bullet-icon .ww-icon {
	overflow: visible;
	font-size: 0.8rem;
}

.ww-bullet-text {
	padding-top: 10px;
	padding-left: 10px;
}

.ww-service-link {
	margin-top: 1rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	overflow: visible;
}

.ww-service-link > span {
	padding-top: 12px;
}

.ww-service-link .ww-icon {
	overflow: visible;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	line-height: 1;
	vertical-align: middle;
}

.ww-additional-support {
	margin-top: 1.5rem;
	background: var(--willow-warm);
	border: 1px solid var(--border);
	border-radius: 1.2rem;
	padding: clamp(1.4rem, 3vw, 1.9rem);
	text-align: center;
}

.ww-additional-support h3 {
	font-size: 1.35rem;
	margin-bottom: 0.75rem;
}

.ww-additional-support p {
	max-width: 46rem;
	margin-inline: auto;
	color: var(--muted-foreground);
	font-size: 0.92rem;
	line-height: 1.7;
}

.ww-pricing {
	background: var(--willow-warm);
}

.ww-pricing-inner {
	max-width: 46rem;
	text-align: center;
}

.ww-pricing-text {
	margin-top: 1rem;
	font-size: 1.08rem;
	line-height: 1.7;
	color: var(--muted-foreground);
}

.ww-pricing .ww-button {
	margin-top: 1.7rem;
}

.ww-testimonials {
	background: var(--background);
}

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

.ww-testimonial-card {
	overflow: visible;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ww-testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px color-mix(in srgb, var(--foreground) 10%, transparent);
}

.ww-rating {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin-bottom: 0.9rem;
	padding: 0 2px 3px 0;
	color: var(--willow-rose);
	overflow: visible;
	min-height: 1.25em;
}

.ww-star {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	overflow: visible;
	flex-shrink: 0;
}

.ww-star .ww-icon {
	display: block;
	overflow: visible;
}

.ww-testimonial-text {
	font-size: 0.93rem;
	color: var(--muted-foreground);
	line-height: 1.7;
	margin-bottom: 0.95rem;
	font-style: italic;
}

.ww-testimonial-name {
	font-size: 0.95rem;
}

.ww-faq {
	background: var(--willow-warm);
}

.ww-faq-inner {
	max-width: 52rem;
}

.ww-faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.ww-faq-item {
	background: var(--background);
	border: 1px solid var(--border);
	border-radius: 0.95rem;
	transition: transform 0.2s ease;
	overflow: visible;
}

.ww-faq-item:hover {
	transform: translateX(3px);
}

.ww-faq-trigger {
	width: 100%;
	border: 0;
	background: none;
	padding: 1.05rem 1.65rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	text-align: left;
	font-family: 'Bree Serif', serif;
	cursor: pointer;
	color: var(--foreground);
	border-radius: 0.95rem;
	overflow: visible;
}

.ww-faq-item.is-open .ww-faq-trigger {
	border-radius: 0.95rem 0.95rem 0 0;
}

.ww-faq-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	transition: transform 0.3s ease;
	flex-shrink: 0;
	overflow: visible;
	min-width: 2rem;
	min-height: 2rem;
	padding: 0.35rem;
	margin-inline: 0.2rem;
	box-sizing: content-box;
}

.ww-faq-icon .ww-icon {
	overflow: visible;
}

.ww-faq-item.is-open .ww-faq-icon {
	transform: rotate(180deg);
}

.ww-faq-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease;
	opacity: 0;
	border-radius: 0 0 0.95rem 0.95rem;
}

.ww-faq-item.is-open .ww-faq-panel {
	max-height: 16rem;
	opacity: 1;
}

.ww-faq-panel p {
	padding: 0 1.2rem 1.2rem;
	color: var(--muted-foreground);
	font-size: 0.92rem;
	line-height: 1.7;
}

.ww-contact {
	background: var(--background);
}

.ww-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 3.5rem);
}

.ww-contact-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ww-contact-list {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	margin-top: 0.75rem;
}

.ww-contact-item {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: color-mix(in srgb, var(--foreground) 70%, transparent);
	transition: color 0.2s ease;
	overflow: visible;
}

.ww-contact-item:hover {
	color: var(--primary);
}

.ww-contact-icon {
	width: 2.5rem;
	height: 2.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	color: var(--primary);
	background: color-mix(in srgb, var(--primary) 10%, transparent);
	flex-shrink: 0;
	overflow: visible;
	padding: 0.25rem;
	box-sizing: border-box;
}

.ww-contact-icon .ww-icon {
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	margin: 0;
	overflow: visible;
	flex-shrink: 0;
}

.ww-contact-form {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 1.2rem;
	padding: clamp(1.25rem, 2.4vw, 1.9rem);
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}

.ww-form-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.ww-form-field label {
	font-size: 0.9rem;
	font-weight: 500;
	color: color-mix(in srgb, var(--foreground) 82%, transparent);
}

.ww-form-field input,
.ww-form-field select,
.ww-form-field textarea {
	width: 100%;
	border: 1px solid var(--input);
	border-radius: calc(var(--radius) - 0.1rem);
	background: var(--background);
	color: var(--foreground);
	padding: 0.74rem 0.88rem;
	font-family: inherit;
	font-size: 0.95rem;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ww-form-field input:focus,
.ww-form-field select:focus,
.ww-form-field textarea:focus {
	border-color: var(--ring);
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--ring) 25%, transparent);
}

.ww-button-submit {
	height: 3rem;
	width: 100%;
	margin-top: 0.3rem;
	overflow: visible;
	gap: 0.75rem;
}

.ww-button-submit .ww-icon {
	overflow: visible;
	flex-shrink: 0;
}

.ww-form-toast {
	background: color-mix(in srgb, var(--primary) 10%, transparent);
	color: var(--foreground);
	border: 1px solid color-mix(in srgb, var(--primary) 40%, transparent);
	border-radius: calc(var(--radius) - 0.1rem);
	padding: 0.85rem 0.95rem;
}

.ww-form-toast strong {
	display: block;
	margin-bottom: 0.3rem;
}

.ww-form-toast.is-error {
	background: color-mix(in srgb, var(--destructive) 10%, transparent);
	border-color: color-mix(in srgb, var(--destructive) 40%, transparent);
	color: var(--destructive);
}

.ww-footer {
	background: var(--willow-earth);
	color: color-mix(in srgb, var(--primary-foreground) 80%, transparent);
	padding: clamp(4rem, 7vw, 5rem) 0 2rem;
}

.ww-footer-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr 1fr 1fr;
	gap: 2rem;
}

.ww-footer h4 {
	color: var(--primary-foreground);
	font-size: 1.15rem;
	margin-bottom: 0.85rem;
}

.ww-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.48rem;
}

.ww-footer button,
.ww-footer a {
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	text-align: left;
	text-decoration: none;
	color: inherit;
	font-family: inherit;
	font-size: 0.91rem;
	transition: color 0.2s ease;
}

.ww-footer button:hover,
.ww-footer a:hover {
	color: var(--primary-foreground);
}

.ww-footer-brand p {
	font-size: 0.92rem;
	line-height: 1.7;
}

.ww-footer-logo {
	height: 5rem;
	width: auto;
	object-fit: contain;
	margin-bottom: 0.9rem;
}

.ww-footer-contact-list li {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	overflow: visible;
	margin-bottom: 0.6rem;
}

.ww-footer-contact-list li:last-child {
	margin-bottom: 0;
}

.ww-footer-contact-list [data-customize-setting="ww_footer_location"] {
	padding-left: 5px;
	padding-right: 0;
}

.ww-footer-contact-list [data-customize-setting="ww_footer_email_display"],
.ww-footer-contact-list [data-customize-setting="ww_footer_facebook_label"] {
	padding-left: 10px;
	padding-right: 10px;
}

.ww-footer-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 2px 3px 0;
	color: var(--willow-rose);
	flex-shrink: 0;
	line-height: 1;
	overflow: visible;
	width: 14px;
	height: 14px;
	min-width: 14px;
	min-height: 14px;
}

.ww-footer-icon .ww-icon {
	display: block;
	width: 14px;
	height: 14px;
	margin: 0;
	overflow: visible;
	flex-shrink: 0;
}

.ww-footer-bottom {
	margin-top: 2.1rem;
	padding-top: 1.1rem;
	border-top: 1px solid color-mix(in srgb, var(--primary-foreground) 12%, transparent);
	text-align: center;
	font-size: 0.8rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.ww-footer-bottom a {
	color: var(--willow-rose);
	text-decoration: none;
}

.ww-footer-bottom a:hover {
	text-decoration: underline;
}

.ww-structured-item.is-empty,
.ww-card.is-empty,
.ww-service-card.is-empty,
.ww-faq-item.is-empty,
.ww-testimonial-card.is-empty {
	display: none !important;
}

.ww-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.ww-reveal-left {
	transform: translateX(-30px);
}

.ww-reveal-right {
	transform: translateX(30px);
}

.ww-reveal.is-visible {
	opacity: 1;
	transform: translate(0, 0);
}

@media (max-width: 1080px) {
	.ww-desktop-nav,
	.ww-header-cta-wrap {
		display: none;
	}

	.ww-mobile-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.ww-values-grid,
	.ww-testimonials-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.ww-about-grid,
	.ww-contact-grid {
		grid-template-columns: 1fr;
	}

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

	.ww-footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.ww-container {
		width: min(100% - 1.6rem, var(--container-width));
	}

	.ww-hero-content {
		width: min(100% - 1.6rem, var(--container-width));
	}

	.ww-hero-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.ww-button-xl {
		width: 100%;
	}

	.ww-values-grid,
	.ww-testimonials-grid,
	.ww-footer-grid {
		grid-template-columns: 1fr;
	}

	.ww-header-inner {
		width: min(100% - 1.4rem, calc(var(--container-width) + 6rem));
	}
}
