/* Hundeschule der Sinfonie – Main Styles */

:root {
	--hs-primary: #bf2c5d;
	--hs-primary-dark: #a02549;
	--hs-primary-light: #f9e6eb;
	--hs-dark: #1f2937;
	--hs-gray: #6b7280;
	--hs-light-gray: #f3f4f6;
	--hs-white: #ffffff;
	--hs-max-width: 80rem;
	--hs-header-height: 4rem;
	--hs-space-inline: clamp(1rem, 4vw, 2rem);
	--hs-space-section-y: clamp(3rem, 6vw, 4.5rem);
	--hs-btn-height: 2.75rem;
	--hs-btn-padding-x: 1.375rem;
	--hs-btn-radius: 0.375rem;
}

html {
	scroll-behavior: smooth;
}

body.hs-theme {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--hs-dark);
	--wp--style--global--content-size: var(--hs-max-width);
	--wp--style--global--wide-size: var(--hs-max-width);
}

/* WordPress constrained layout → volle Content-Breite bis 1280px */
body.hs-theme .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	max-width: min(calc(100% - 2 * var(--hs-space-inline)), var(--hs-max-width));
}

body.hs-theme .wp-block-post-content,
body.hs-theme .entry-content {
	max-width: 100%;
}

/* Remove WordPress block shell gaps between header, main and footer */
body.hs-theme .wp-site-blocks > *,
body.hs-theme .wp-site-blocks > .wp-block-template-part,
body.hs-theme main.wp-block-group,
body.hs-theme .wp-block-template-part,
body.hs-theme .wp-block-shortcode,
body.hs-theme .hs-main-home .is-layout-flow > * {
	margin-block-start: 0;
	margin-block-end: 0;
}

body.hs-theme .hs-main-home,
body.hs-theme main.wp-block-group {
	padding: 0;
	max-width: none;
}

/* Header */
.hs-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--hs-white);
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.hs-header-inner {
	max-width: var(--hs-max-width);
	margin: 0 auto;
	padding: 0 var(--hs-space-inline);
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--hs-header-height);
}

.hs-brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: var(--hs-dark);
	font-weight: 700;
	font-size: 1.25rem;
}

.hs-brand-icon {
	font-size: 1.75rem;
	color: var(--hs-primary);
}

.hs-logo-img {
	height: 2rem;
	width: auto;
	max-width: 220px;
	object-fit: contain;
}

.hs-footer-logo {
	width: 2.5rem;
	height: 2.5rem;
	object-fit: contain;
	border-radius: 0.375rem;
	flex-shrink: 0;
}

.hs-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.hs-nav-toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--hs-dark);
	transition: transform 0.2s, opacity 0.2s;
}

.hs-nav {
	display: flex;
	align-items: center;
}

.hs-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hs-menu-item {
	position: relative;
}

.hs-menu-link {
	text-decoration: none;
	color: #374151;
	font-weight: 500;
	padding: 0.5rem 0;
	display: block;
	transition: color 0.2s;
	border-bottom: 2px solid transparent;
}

.hs-menu-link:hover,
.hs-menu-item.current-menu-item > .hs-menu-link,
.hs-menu-item.current_page_item > .hs-menu-link {
	color: var(--hs-primary);
	border-bottom-color: var(--hs-primary);
}

.hs-menu-item.current-menu-ancestor > .hs-menu-link,
.hs-menu-item.current-menu-parent > .hs-menu-link {
	color: var(--hs-primary);
}

.hs-menu-chevron {
	display: inline-block;
	margin-left: 0.25rem;
	width: 0.45em;
	height: 0.45em;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-0.12em);
	transition: transform 0.2s ease;
	vertical-align: middle;
}

.hs-has-dropdown:hover > .hs-menu-link .hs-menu-chevron,
.hs-has-dropdown.is-open > .hs-menu-link .hs-menu-chevron {
	transform: rotate(-135deg) translateY(0.08em);
}

.hs-submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 12rem;
	background: var(--hs-white);
	border: 1px solid #e5e7eb;
	border-radius: 0.375rem;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
	list-style: none;
	margin: 0;
	padding: 0.25rem 0;
	z-index: 60;
}

.hs-has-dropdown:hover > .hs-submenu,
.hs-has-dropdown.is-open > .hs-submenu {
	display: block;
}

.hs-submenu .hs-menu-link {
	padding: 0.5rem 1rem;
	border-bottom: none;
}

.hs-submenu .hs-menu-link:hover {
	background: var(--hs-primary-light);
	color: var(--hs-primary);
}

/* Mobile nav */
@media (max-width: 767px) {
	.hs-nav-toggle {
		display: flex;
	}

	.hs-nav {
		position: fixed;
		top: var(--hs-header-height);
		left: 0;
		right: 0;
		background: var(--hs-white);
		border-top: 1px solid #e5e7eb;
		padding: 1rem;
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.25s, opacity 0.25s;
		box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
	}

	.hs-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.hs-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.hs-submenu {
		position: static;
		box-shadow: none;
		border: none;
		padding-left: 1rem;
		display: none;
	}

	.hs-has-dropdown.is-open > .hs-submenu {
		display: block;
	}
}

/* Footer */
.hs-footer {
	background: var(--hs-dark);
	color: var(--hs-white);
	margin-top: auto;
}

.hs-footer-inner {
	max-width: var(--hs-max-width);
	margin: 0 auto;
	padding: clamp(2.5rem, 5vw, 3rem) var(--hs-space-inline) clamp(1.25rem, 3vw, 1.5rem);
}

.hs-footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

@media (min-width: 640px) {
	.hs-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.hs-footer-grid {
		grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.8fr) minmax(0, 1fr);
		gap: 2rem 3rem;
	}
}

.hs-footer-col h3 {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 1rem;
	color: var(--hs-white);
	letter-spacing: 0;
	text-transform: none;
}

.hs-footer-col--brand {
	max-width: 28rem;
}

.hs-brand--footer {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin-bottom: 1rem;
	color: var(--hs-white);
}

.hs-footer-intro {
	color: #e5e7eb;
	font-size: 0.9375rem;
	line-height: 1.7;
	margin: 0 0 1.25rem;
}

.hs-footer-intro strong {
	color: var(--hs-white);
	font-weight: 700;
}

.hs-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.25rem;
}

.hs-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--hs-white);
	text-decoration: none;
	transition: color 0.2s ease, transform 0.2s ease;
}

.hs-social-icon:hover {
	color: var(--hs-primary-light);
	transform: translateY(-1px);
}

.hs-footer-links,
.hs-footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hs-footer-links li,
.hs-footer-contact-item {
	margin-bottom: 0.75rem;
}

.hs-footer-links a,
.hs-footer-contact a {
	color: #e5e7eb;
	text-decoration: none;
	transition: color 0.2s ease;
}

.hs-footer-links a:hover,
.hs-footer-contact a:hover {
	color: var(--hs-white);
}

.hs-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.hs-footer-contact-icon {
	display: inline-flex;
	flex-shrink: 0;
	margin-top: 0.15rem;
	color: var(--hs-primary);
}

.hs-footer-contact-item > span:not(.hs-footer-contact-icon),
.hs-footer-contact-item > a {
	color: #e5e7eb;
	font-size: 0.9375rem;
	line-height: 1.55;
}

.hs-footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-top: 1px solid #374151;
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	text-align: center;
	color: #9ca3af;
	font-size: 0.875rem;
}

.hs-footer-copy {
	margin: 0;
}

/* Sections */
.hs-section {
	padding: var(--hs-space-section-y) var(--hs-space-inline);
}

.hs-hero .wp-block-cover__inner-container {
	max-width: 48rem;
}

.hs-hero {
	background: linear-gradient(135deg, var(--hs-primary-dark) 0%, var(--hs-primary) 100%);
}

.hs-services-grid .hs-service-card {
	background: var(--hs-white);
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	padding: 1.5rem;
	box-shadow: 0 1px 3px rgb(0 0 0 / 0.08);
	transition: box-shadow 0.2s ease;
}

.hs-services-grid .hs-service-card:hover {
	box-shadow: 0 8px 24px rgb(191 44 93 / 0.1);
}

.hs-cta-section {
	padding: var(--hs-space-section-y) var(--hs-space-inline);
	text-align: center;
}

.hs-quote-box {
	padding: 2rem;
	border-radius: 0.5rem;
	font-size: 1.125rem;
}

/* Course grid (plugin) */
.hs-kurs-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	max-width: var(--hs-max-width);
	margin: 0 auto;
	padding: 0;
}

@media (min-width: 640px) {
	.hs-kurs-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.hs-kurs-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.hs-kurs-card {
	background: var(--hs-white);
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: 0 1px 3px rgb(0 0 0 / 0.08);
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hs-kurs-card:hover {
	box-shadow: 0 10px 28px rgb(0 0 0 / 0.1);
	transform: translateY(-2px);
}

.hs-kurs-card__media {
	position: relative;
	background: var(--hs-primary-light);
}

.hs-kurs-card__media-link {
	display: block;
	text-decoration: none;
}

.hs-kurs-card__img,
.hs-kurs-card__placeholder {
	width: 100%;
	height: 11.5rem;
	object-fit: cover;
	display: block;
}

.hs-kurs-card__placeholder {
	background: linear-gradient(135deg, var(--hs-primary-light) 0%, #fce7f3 100%);
}

.hs-kurs-card__badges {
	position: absolute;
	inset: 0.75rem 0.75rem auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.5rem;
	pointer-events: none;
}

.hs-kurs-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.375rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
}

.hs-kurs-card__badge--type {
	background: #dbeafe;
	color: #1e40af;
}

.hs-kurs-card__badge--welpentraining,
.hs-kurs-card__badge--grundgehorsam,
.hs-kurs-card__badge--agility,
.hs-kurs-card__badge--mehrwochenkurs,
.hs-kurs-card__badge--geschlossen {
	background: var(--hs-primary-light);
	color: var(--hs-primary);
}

.hs-kurs-card__badge--price {
	margin-left: auto;
	background: var(--hs-primary);
	color: var(--hs-white);
}

.hs-kurs-card__icon {
	flex-shrink: 0;
}

.hs-kurs-card__body {
	padding: 1.375rem 1.25rem 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.hs-kurs-card__type {
	display: inline-block;
	background: var(--hs-primary-light);
	color: var(--hs-primary);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.625rem;
	border-radius: 9999px;
	margin-bottom: 0.5rem;
}

.hs-kurs-card__title {
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
	color: var(--hs-dark);
}

.hs-kurs-card__title a {
	color: inherit;
	text-decoration: none;
}

.hs-kurs-card__title a:hover {
	color: var(--hs-primary);
}

.hs-kurs-card__excerpt {
	font-size: 0.9375rem;
	color: #374151;
	line-height: 1.6;
	margin: 0;
	flex: 1;
}

.hs-kurs-card__facts {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}

.hs-kurs-card__fact {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--hs-gray);
	line-height: 1.45;
}

.hs-kurs-card__fact strong {
	color: #374151;
	font-weight: 600;
}

.hs-kurs-card__actions {
	margin-top: auto;
	padding-top: 0.25rem;
}

.hs-kurs-card__cta,
.hs-kurs-card__link {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 100%;
	height: var(--hs-btn-height);
	min-height: var(--hs-btn-height);
	padding: 0 var(--hs-btn-padding-x);
	border: 1px solid transparent;
	border-radius: var(--hs-btn-radius);
	background: var(--hs-primary);
	color: var(--hs-white);
	text-decoration: none;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.hs-kurs-card__cta:visited,
.hs-kurs-card__link:visited {
	color: var(--hs-white);
}

.hs-kurs-card__cta:hover,
.hs-kurs-card__link:hover {
	background: var(--hs-primary-dark);
	box-shadow: 0 4px 14px rgb(191 44 93 / 0.18);
}

.hs-kurs-empty {
	text-align: center;
	padding: 3rem var(--hs-space-inline);
	color: var(--hs-gray);
}

/* Sponsors */
.hs-sponsors {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	padding: 2rem var(--hs-space-inline);
}

.hs-sponsor-item img {
	max-height: 4rem;
	width: auto;
	filter: grayscale(20%);
	transition: filter 0.2s;
}

.hs-sponsor-item a:hover img {
	filter: grayscale(0%);
}

/* Wochenplan table */
.hs-wochenplan-table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
}

.hs-wochenplan-table th,
.hs-wochenplan-table td {
	border: 1px solid #e5e7eb;
	padding: 0.75rem 1rem;
	text-align: left;
}

.hs-wochenplan-table th {
	background: var(--hs-primary-light);
	color: var(--hs-primary-dark);
	font-weight: 600;
}

.hs-wochenplan-table tr:nth-child(even) {
	background: var(--hs-light-gray);
}

/* Contact form styling */
.wpcf7 form {
	max-width: 40rem;
	margin: 0 auto;
}

.wpcf7 label {
	display: block;
	font-weight: 500;
	margin-bottom: 0.25rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	padding: 0.625rem 0.75rem;
	border: 1px solid #d1d5db;
	border-radius: 0.375rem;
	font-size: 1rem;
	margin-bottom: 1rem;
	box-sizing: border-box;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	outline: 2px solid var(--hs-primary);
	border-color: var(--hs-primary);
}

.wpcf7 input[type="submit"] {
	background: var(--hs-primary);
	color: var(--hs-white);
	border: 1px solid transparent;
	box-sizing: border-box;
	height: var(--hs-btn-height);
	min-height: var(--hs-btn-height);
	padding: 0 var(--hs-btn-padding-x);
	border-radius: var(--hs-btn-radius);
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
	background: var(--hs-primary-dark);
	box-shadow: 0 4px 14px rgb(191 44 93 / 0.18);
}

/* Gallery styles live in plugin core.css (hs-galerie-page). */
.hs-main-galerie .entry-content > *:not(.hs-galerie-page) {
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

/* News teaser grid – card styles in core.css */
.hs-news-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
}

@media (min-width: 640px) {
	.hs-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.hs-news-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 2rem;
	}
}

/* Page content */
body.hs-theme main.wp-block-group:not(.hs-main-home):not(.hs-main-kurs):not(.hs-main-kurse):not(.hs-main-about):not(.hs-main-news):not(.hs-main-contact):not(.hs-main-galerie) {
	min-height: 50vh;
	padding-block: clamp(2.5rem, 5vw, 3.5rem);
	padding-inline: var(--hs-space-inline);
	box-sizing: border-box;
}

body.hs-theme .hs-main-kurs,
body.hs-theme .hs-main-kurse,
body.hs-theme .hs-main-about,
body.hs-theme .hs-main-news,
body.hs-theme .hs-main-contact,
body.hs-theme .hs-main-galerie {
	padding: 0;
	max-width: none;
}

.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	height: var(--hs-btn-height);
	min-height: var(--hs-btn-height);
	padding: 0 var(--hs-btn-padding-x) !important;
	border-radius: var(--hs-btn-radius) !important;
	font-family: inherit;
	font-size: 0.9375rem !important;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	border: 1px solid transparent;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.wp-block-button__link:hover {
	box-shadow: 0 4px 14px rgb(191 44 93 / 0.18);
}

.has-primary-background-color {
	background-color: var(--hs-primary) !important;
}

.has-primary-color {
	color: var(--hs-primary) !important;
}

.has-primary-light-background-color {
	background-color: var(--hs-primary-light) !important;
}

.has-gray-color {
	color: var(--hs-gray) !important;
}

.has-white-color {
	color: var(--hs-white) !important;
}

.has-dark-background-color {
	background-color: var(--hs-dark) !important;
}

/* ==========================================================================
   Homepage – matching hundeschule-sinfonie.de
   ========================================================================== */

.hs-main-home > .wp-block-group {
	max-width: none;
	padding: 0;
}

.hs-home {
	overflow-x: hidden;
}

.hs-container {
	max-width: var(--hs-max-width);
	margin: 0 auto;
	padding: 0 var(--hs-space-inline);
	box-sizing: border-box;
}

.hs-container--narrow {
	max-width: 48rem;
}

.hs-section-head {
	text-align: center;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hs-section-head h2 {
	font-size: clamp(1.875rem, 4vw, 2.25rem);
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 1rem;
}

.hs-section-head p {
	font-size: 1.25rem;
	color: var(--hs-gray);
	margin: 0;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
}

.hs-home-section {
	padding: clamp(3rem, 6vw, 4.5rem) 0;
}

/* Hero */
.hs-home-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: #bf2c5d;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
}

.hs-home-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgb(249 230 235 / 0.85) 0%, rgb(231 176 198 / 0.75) 45%, rgb(191 44 93 / 0.55) 100%);
}

.hs-home-hero[style*="background-image"] .hs-home-hero__overlay {
	background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25));
}

.hs-home-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 56rem;
	padding: clamp(4rem, 8vw, 5.5rem) var(--hs-space-inline) clamp(3rem, 6vw, 4rem);
}

.hs-home-hero__title {
	font-size: clamp(2.25rem, 6vw, 3.75rem);
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 1.5rem;
	color: #fff;
	text-shadow: 0 2px 16px rgb(0 0 0 / 0.15);
}

.hs-home-hero__subtitle {
	font-size: clamp(1.25rem, 3vw, 1.875rem);
	margin: 0 0 2rem;
	color: #f3f4f6;
	font-weight: 500;
}

.hs-home-hero__text {
	font-size: clamp(1rem, 2vw, 1.125rem);
	line-height: 1.7;
	margin: 0 auto 2.5rem;
	max-width: 48rem;
	color: var(--hs-primary-light);
	text-align: left;
}

.hs-home-hero__text p {
	margin: 0 0 0.75rem;
}

.hs-home-hero__text p:last-child {
	margin-bottom: 0;
}

.hs-home-hero[style*="background-image"] .hs-home-hero__text {
	text-align: center;
}

.hs-home-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: stretch;
	justify-content: center;
	width: 100%;
	max-width: 36rem;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.hs-home-hero__actions {
		flex-direction: row;
		align-items: center;
		max-width: none;
		width: auto;
	}
}

/* Buttons */
a.hs-btn,
a.hs-btn:visited,
button.hs-btn,
input.hs-btn {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	box-sizing: border-box;
	height: var(--hs-btn-height);
	padding: 0 var(--hs-btn-padding-x);
	border-radius: var(--hs-btn-radius);
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.01em;
	text-decoration: none;
	text-align: center;
	text-transform: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	border: 1px solid transparent;
	cursor: pointer;
	vertical-align: middle;
	-webkit-appearance: none;
	appearance: none;
}

.hs-btn__label {
	display: block;
	margin: 0;
	padding: 0;
	line-height: 1.15;
}

.hs-btn-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
	line-height: 0;
	transition: transform 0.2s ease;
}

.hs-btn-arrow svg {
	display: block;
	width: 1rem;
	height: 1rem;
}

.hs-btn:hover {
	box-shadow: 0 4px 14px rgb(191 44 93 / 0.18);
}

.hs-btn--white {
	background: #fff;
	color: var(--hs-primary);
}

.hs-btn--white:hover {
	background: #f3f4f6;
	color: var(--hs-primary-dark);
}

.hs-btn--outline-white {
	border: 2px solid #fff !important;
	color: #fff;
	background: transparent;
	box-shadow: none;
}

.hs-btn--outline-white:hover {
	background: #fff;
	color: var(--hs-primary);
	border-color: #fff;
	box-shadow: 0 4px 14px rgb(0 0 0 / 0.12);
}

.hs-btn--primary {
	background: var(--hs-primary);
	color: #fff;
}

.hs-btn--primary:hover {
	background: var(--hs-primary-dark);
	color: #fff;
}

.hs-btn--outline {
	border: 2px solid var(--hs-primary) !important;
	color: var(--hs-primary);
	background: transparent;
	box-shadow: none;
}

.hs-btn--outline:hover {
	background: var(--hs-primary);
	color: #fff;
	border-color: var(--hs-primary);
	box-shadow: 0 4px 14px rgb(191 44 93 / 0.22);
}

.hs-btn--lg {
	height: 3rem;
	min-height: 3rem;
	padding: 0 1.5rem;
	font-size: 1rem;
}

.hs-btn:hover .hs-btn-arrow {
	transform: translateX(2px);
}

.hs-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--hs-primary);
	font-size: 1.125rem;
	font-weight: 600;
	text-decoration: none;
	margin-top: 1.5rem;
}

.hs-link-arrow:hover {
	color: var(--hs-primary-dark);
}

/* About */
.hs-home-about {
	background: #f9fafb;
}

.hs-home-about__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.hs-home-about__grid {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}
}

.hs-home-about__content h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 1.5rem;
}

.hs-home-about__content p {
	font-size: 1.125rem;
	line-height: 1.75;
	color: #374151;
	margin: 0 0 1.5rem;
}

.hs-home-about__media {
	position: relative;
	order: -1;
}

@media (min-width: 1024px) {
	.hs-home-about__media {
		order: 0;
	}
}

.hs-home-about__photo,
.hs-home-about__placeholder {
	width: 100%;
	max-width: 32rem;
	margin: 0 auto;
	display: block;
	border-radius: 1rem;
	box-shadow: 0 20px 40px rgb(0 0 0 / 0.12);
}

.hs-home-about__placeholder {
	aspect-ratio: 4 / 5;
	background: linear-gradient(145deg, var(--hs-primary-light), #e7b0c6);
	min-height: 20rem;
}

.hs-home-about__badge {
	position: absolute;
	right: 0;
	bottom: -1rem;
	background: #fff;
	border-radius: 0.75rem;
	padding: 0.5rem 0.75rem;
	box-shadow: 0 12px 30px rgb(0 0 0 / 0.12);
	border: 1px solid #f3f4f6;
}

@media (min-width: 768px) {
	.hs-home-about__badge {
		right: -1rem;
		bottom: -1.5rem;
		padding: 0.75rem 1rem;
	}
}

.hs-home-about__badge img {
	height: 7rem;
	width: auto;
	display: block;
}

@media (min-width: 768px) {
	.hs-home-about__badge img {
		height: 10rem;
	}
}

/* Philosophy */
.hs-home-philosophy {
	background: #fff;
}

.hs-philosophy__intro p {
	font-size: 1.25rem;
	line-height: 1.75;
	color: #374151;
	text-align: center;
	max-width: 56rem;
	margin: 0 auto 1.5rem;
}

.hs-philosophy__quote {
	position: relative;
	margin: 3rem 0;
	padding: 2rem 2rem 2rem 2.5rem;
	background: #f9fafb;
	border-left: 4px solid var(--hs-primary);
	border-radius: 0 1rem 1rem 0;
	font-size: 1.25rem;
	font-style: italic;
	line-height: 1.75;
	color: #374151;
}

.hs-philosophy__quote::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgb(191 44 93 / 0.08), rgb(214 51 132 / 0.08));
	border-radius: 0 1rem 1rem 0;
	pointer-events: none;
}

.hs-philosophy__points {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin: 3rem 0;
}

@media (min-width: 768px) {
	.hs-philosophy__points {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

.hs-philosophy__point {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.hs-dot {
	width: 1rem;
	height: 1rem;
	background: var(--hs-primary);
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 0.375rem;
}

.hs-philosophy__point h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 0.5rem;
}

.hs-philosophy__point p {
	margin: 0;
	color: #374151;
	line-height: 1.6;
}

.hs-philosophy__outro {
	text-align: center;
	max-width: 56rem;
	margin: 0 auto;
}

.hs-philosophy__outro p {
	font-size: 1.25rem;
	line-height: 1.75;
	color: #374151;
	margin: 0 0 1.5rem;
}

.hs-highlight {
	color: var(--hs-primary);
	font-weight: 600;
}

/* Values */
.hs-home-values {
	background: #f9fafb;
}

.hs-values-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 768px) {
	.hs-values-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}
}

.hs-value-card {
	text-align: center;
}

.hs-value-card__icon {
	width: 5rem;
	height: 5rem;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	background: var(--hs-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.hs-value-card__icon::after {
	content: "";
	width: 2.25rem;
	height: 2.25rem;
	background: #fff;
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-mode: luminance;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.hs-value-card__icon--badge::after,
.hs-service-item__icon--badge::after {
	mask-image: url("../img/icon_badge.png");
	-webkit-mask-image: url("../img/icon_badge.png");
}

.hs-value-card__icon--group::after,
.hs-service-item__icon--group::after {
	mask-image: url("../img/icon_group.png");
	-webkit-mask-image: url("../img/icon_group.png");
}

.hs-value-card__icon--heart::after,
.hs-service-item__icon--heart::after {
	mask-image: url("../img/icon_heart.png");
	-webkit-mask-image: url("../img/icon_heart.png");
}

.hs-value-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 1rem;
}

.hs-value-card p {
	color: #374151;
	line-height: 1.7;
	margin: 0;
}

/* Services */
.hs-home-services {
	background: #fff;
}

.hs-services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.hs-services-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}
}

.hs-service-item {
	text-align: center;
}

.hs-service-item__icon {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1.5rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, var(--hs-primary), #d63384);
	box-shadow: 0 8px 20px rgb(191 44 93 / 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.hs-service-item__icon::after {
	content: "";
	width: 2.25rem;
	height: 2.25rem;
	background: #fff;
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-mode: luminance;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.hs-service-item h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 1rem;
}

.hs-service-item p {
	color: #374151;
	line-height: 1.7;
	margin: 0;
}

.hs-section-action {
	text-align: center;
	margin-top: 3rem;
}

/* Partners */
.hs-home-partners {
	background: #fff;
	border-top: 1px solid #f3f4f6;
	padding: 3rem 0;
}

.hs-home-partners .hs-sponsors {
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

@media (min-width: 768px) {
	.hs-home-partners .hs-sponsors {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (min-width: 1024px) {
	.hs-home-partners .hs-sponsors {
		grid-template-columns: repeat(6, 1fr);
	}
}

.hs-home-partners .hs-sponsor-item img {
	max-height: 4rem;
	width: 100%;
	object-fit: contain;
	filter: grayscale(100%);
	transition: filter 0.3s, transform 0.3s;
}

.hs-home-partners .hs-sponsor-item a:hover img,
.hs-home-partners .hs-sponsor-item img:hover {
	filter: grayscale(0%);
	transform: scale(1.02);
}

/* CTA */
.hs-home-cta {
	background: var(--hs-primary-light);
	text-align: center;
}

.hs-home-cta h2 {
	font-size: clamp(1.875rem, 4vw, 2.25rem);
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 1rem;
}

.hs-home-cta > .hs-container > p {
	font-size: 1.25rem;
	color: var(--hs-gray);
	max-width: 42rem;
	margin: 0 auto 2rem;
	line-height: 1.6;
}

.hs-home-cta__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: stretch;
	justify-content: center;
	width: 100%;
	max-width: 32rem;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.hs-home-cta__actions {
		flex-direction: row;
		align-items: center;
		max-width: none;
		width: auto;
	}

	.hs-home-cta__actions .hs-btn--outline {
		white-space: normal;
		max-width: 18rem;
	}
}

/* Header refinements for homepage feel */
.hs-brand-icon svg {
	display: block;
}

.hs-menu-link:focus-visible,
.hs-btn:focus-visible,
.hs-link-arrow:focus-visible {
	outline: 2px solid var(--hs-primary);
	outline-offset: 2px;
}

@media (max-width: 639px) {
	a.hs-btn,
	button.hs-btn,
	input.hs-btn {
		height: auto;
		min-height: 2.75rem;
		padding: 0.625rem 1.25rem;
		white-space: normal;
	}

	.hs-btn__label {
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.hs-btn:hover .hs-btn-arrow {
		transform: none;
	}
}
