@font-face {
	font-family: "Lato";
	src: url("../fonts/lato-300.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Lato";
	src: url("../fonts/lato-400.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Lato";
	src: url("../fonts/lato-700.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Playfair Display";
	src: url("../fonts/playfair-display-400.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Playfair Display";
	src: url("../fonts/playfair-display-500.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Playfair Display";
	src: url("../fonts/playfair-display-600.ttf") format("truetype");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Playfair Display";
	src: url("../fonts/playfair-display-700.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--hp-background: #f7f5fa;
	--hp-foreground: #261736;
	--hp-card: #ffffff;
	--hp-card-foreground: #261736;
	--hp-popover: #ffffff;
	--hp-popover-foreground: #261736;
	--hp-primary: #a682c9;
	--hp-primary-foreground: #ffffff;
	--hp-secondary: #efe8f3;
	--hp-secondary-foreground: #4c2e6b;
	--hp-muted: #ebe7ef;
	--hp-muted-foreground: #756487;
	--hp-accent: #efe8f3;
	--hp-accent-foreground: #4c2e6b;
	--hp-border: #ded6e6;
	--hp-input: #ded6e6;
	--hp-ring: #a682c9;
	--hp-heading: #472b64;
	--hp-radius: 1rem;
}

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

html {
	scroll-behavior: smooth;
}

body.hp-body {
	margin: 0;
	background: var(--hp-background);
	color: var(--hp-foreground);
	font-family: "Lato", sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img,
svg {
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea {
	font: inherit;
}

.hp-site-shell {
	min-height: 100vh;
	overflow: hidden;
}

.hp-container {
	width: min(100%, 80rem);
	margin: 0 auto;
	padding: 0 1rem;
}

.hp-container--wide {
	width: min(100%, 84rem);
}

.hp-inline-svg {
	display: inline-block;
	vertical-align: middle;
	width: 1em;
	height: 1em;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex-shrink: 0;
}

.hp-inline-svg--fill {
	fill: currentColor;
}

/* Wavy underline – mismo estilo que Lovable (::after con SVG repetido) */
.hp-highlight {
	position: relative;
	display: inline-block;
	color: var(--hp-primary);
	text-decoration: none;
	margin-left: 0.28rem;
}
.hp-highlight::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 6px;
	background-color: var(--hp-primary);
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0 5 Q25 0 50 5 Q75 10 100 5' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
	mask-size: 40px 6px;
	mask-repeat: repeat-x;
	mask-position: left bottom;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0 5 Q25 0 50 5 Q75 10 100 5' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
	-webkit-mask-size: 40px 6px;
	-webkit-mask-repeat: repeat-x;
	-webkit-mask-position: left bottom;
}

.hp-highlight--hero {
	margin-left: 0.15rem;
}

.hp-highlight--plain {
	text-decoration: none;
}
.hp-highlight--plain::after {
	display: none;
}

.hp-navbar {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	background: color-mix(in srgb, var(--hp-background) 90%, transparent);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--hp-border);
}

.hp-navbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 4rem;
}

.hp-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: "Playfair Display", serif;
	font-size: 1.25rem;
	color: var(--hp-heading);
}

.hp-brand__icon,
.hp-footer__brand-icon {
	color: var(--hp-primary);
}

.hp-navbar__desktop {
	display: none;
	align-items: center;
	gap: 1rem;
}

.hp-nav-link {
	font-size: 0.75rem;
	font-weight: 700;
	transition: color 0.25s ease;
}

.hp-nav-link:hover,
.hp-mobile-link:hover,
.hp-contact-meta:hover .hp-contact-meta__value,
.hp-footer__builder a:hover {
	color: var(--hp-primary);
}

.hp-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--hp-foreground);
	cursor: pointer;
}

.hp-menu-toggle__icon {
	position: absolute;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.hp-menu-toggle__icon--close {
	opacity: 0;
	transform: scale(0.8);
}

.hp-menu-toggle.is-open .hp-menu-toggle__icon--menu {
	opacity: 0;
	transform: scale(0.8);
}

.hp-menu-toggle.is-open .hp-menu-toggle__icon--close {
	opacity: 1;
	transform: scale(1);
}

.hp-mobile-menu {
	max-height: 0;
	overflow: hidden;
	background: var(--hp-background);
	border-bottom: 1px solid transparent;
	transition: max-height 0.25s ease, border-color 0.25s ease;
}

.hp-mobile-menu.is-open {
	max-height: 20rem;
	border-color: var(--hp-border);
}

.hp-mobile-menu__inner {
	display: grid;
	gap: 0.75rem;
	padding-top: 0;
	padding-bottom: 1rem;
}

.hp-mobile-link {
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
}

.hp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: 999px;
	font-weight: 700;
	line-height: 1;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

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

.hp-button--nav {
	padding: 0.7rem 1.35rem;
	font-size: 0.75rem;
	background: var(--hp-primary);
	color: var(--hp-primary-foreground);
}

.hp-button--mobile {
	padding: 0.9rem 1.35rem;
	font-size: 0.875rem;
	background: var(--hp-primary);
	color: var(--hp-primary-foreground);
}

.hp-button--primary {
	padding: 0.95rem 1.5rem;
	background: var(--hp-primary);
	color: var(--hp-primary-foreground);
	box-shadow: 0 10px 30px color-mix(in srgb, var(--hp-primary) 20%, transparent);
}

.hp-button--primary:hover,
.hp-button--nav:hover {
	background: color-mix(in srgb, var(--hp-primary) 90%, black 10%);
}

.hp-button--secondary {
	padding: 0.95rem 1.5rem;
	border: 2px solid var(--hp-primary);
	color: var(--hp-primary);
	background: transparent;
}

.hp-button--secondary:hover {
	background: color-mix(in srgb, var(--hp-primary) 10%, transparent);
}

/* Book Now: mismo tamaño que Lovable (mt-6 px-6 py-2.5 text-sm → padding 0.625rem 74px, line-height 1.25rem) */
.hp-button--service {
	display: inline-block;
	margin-top: 1.5rem;
	padding: 0.625rem 74px;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	background: var(--hp-primary);
	color: var(--hp-primary-foreground);
	font-family: "Playfair Display", serif;
	border-radius: 9999px;
	align-self: center;
	transition: background-color 0.25s ease, color 0.25s ease;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
	min-height: 2.5rem;
}
.hp-button--service:hover {
	background: color-mix(in srgb, var(--hp-primary) 90%, transparent);
	color: var(--hp-primary-foreground);
}

.hp-button--submit {
	width: 100%;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	border-radius: 9999px;
	box-shadow: none;
	border: none;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.hp-button--primary.hp-button--submit:hover {
	background: color-mix(in srgb, var(--hp-primary) 90%, black 10%);
	transform: none;
}

.hp-button__icon {
	display: inline-flex;
	font-size: 1rem;
}

.hp-section {
	position: relative;
	padding: 5rem 0;
}

.hp-hero {
	padding-top: 6rem;
	padding-bottom: 4rem;
}

.hp-services,
.hp-cta {
	background: color-mix(in srgb, var(--hp-secondary) 50%, transparent);
}

.hp-hero__grid,
.hp-about__grid,
.hp-contact__grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3rem;
}

.hp-hero__content,
.hp-about__content,
.hp-contact__content {
	width: 100%;
	text-align: center;
}

.hp-hero__title,
.hp-section-title,
.hp-cta__title {
	margin: 0;
	font-family: "Playfair Display", serif;
	color: var(--hp-heading);
	line-height: 1.15;
}

.hp-hero__title {
	font-size: clamp(2.5rem, 7vw, 4.5rem);
	margin-bottom: 1rem;
}

.hp-section-title {
	font-size: clamp(1.875rem, 5vw, 3rem);
	margin-bottom: 1rem;
}

.hp-section-title--center,
.hp-section-copy--center {
	text-align: center;
}

.hp-hero__text,
.hp-about__text,
.hp-section-copy,
.hp-cta__text {
	margin: 0;
	color: var(--hp-muted-foreground);
	font-size: 1.125rem;
	line-height: 1.75;
	white-space: pre-line;
}

.hp-about__text {
	max-width: 42rem;
}

.hp-hero__text {
	max-width: 33rem;
	margin: 0 auto 2rem;
}

.hp-hero__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.hp-hero__media {
	flex-shrink: 0;
}

.hp-hero__media-wrap {
	position: relative;
}

.hp-hero__badge {
	position: absolute;
	top: -1.5rem;
	right: -1.5rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
	background: var(--hp-primary);
	color: var(--hp-primary-foreground);
	font-size: 0.75rem;
	font-weight: 700;
	box-shadow: 0 10px 30px color-mix(in srgb, var(--hp-primary) 20%, transparent);
}

.hp-hero__badge-icon {
	font-size: 0.75rem;
}

.hp-image-frame {
	position: relative;
	overflow: hidden;
	border: 2px dashed color-mix(in srgb, var(--hp-primary) 30%, transparent);
	box-shadow: 0 4px 24px -6px color-mix(in srgb, var(--hp-primary) 18%, transparent);
	background: var(--hp-secondary);
}

.hp-image-frame img,
.hp-cta__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hp-image-frame--hero {
	width: 18rem;
	aspect-ratio: 3 / 4;
	border-radius: 1.75rem;
	animation: hp-float 3s ease-in-out infinite;
}

.hp-image-frame--about {
	width: 14rem;
	aspect-ratio: 3 / 4;
	border-radius: 1.75rem;
}

.hp-image-frame--contact {
	height: 100%;
	min-height: 24rem;
	border-radius: 1.75rem;
}

.hp-paw {
	position: absolute;
	color: color-mix(in srgb, var(--hp-primary) 8%, transparent);
	pointer-events: none;
}

.hp-paw svg {
	width: 100%;
	height: 100%;
}

.hp-paw--hero-1 { top: 5rem; left: 5%; width: 3rem; transform: rotate(-25deg); }
.hp-paw--hero-2 { top: 10rem; right: 8%; width: 2rem; transform: rotate(15deg); animation: hp-float 3s ease-in-out 1s infinite; }
.hp-paw--hero-3 { bottom: 2.5rem; left: 15%; width: 2.5rem; transform: rotate(30deg); }
.hp-paw--hero-4 { bottom: 5rem; right: 20%; width: 1.5rem; transform: rotate(-10deg); animation: hp-float 3s ease-in-out infinite; }
.hp-paw--badge-left { top: -1rem; left: -1rem; width: 2rem; color: color-mix(in srgb, var(--hp-primary) 30%, transparent); animation: hp-float 3s ease-in-out infinite; }
.hp-paw--badge-right { right: -1rem; bottom: -1rem; width: 2rem; color: color-mix(in srgb, var(--hp-primary) 30%, transparent); animation: hp-float 3s ease-in-out 1s infinite; }
.hp-paw--about-1 { top: 2rem; right: 10%; width: 2.5rem; transform: rotate(20deg); }
.hp-paw--about-2 { left: 6%; bottom: 3rem; width: 1.75rem; transform: rotate(-15deg); }
.hp-paw--services-1 { top: 2.5rem; left: 4%; width: 2.25rem; transform: rotate(25deg); }
.hp-paw--services-2 { top: 6rem; right: 12%; width: 1.5rem; transform: rotate(-20deg); }
.hp-paw--testimonials-1 { top: 1.5rem; left: 8%; width: 2rem; transform: rotate(-30deg); }
.hp-paw--testimonials-2 { right: 5%; bottom: 2rem; width: 2.5rem; transform: rotate(18deg); }
.hp-paw--cta-1 { top: 3rem; left: 7%; width: 1.5rem; transform: rotate(22deg); }
.hp-paw--cta-2 { right: 15%; bottom: 2.5rem; width: 1.75rem; transform: rotate(-25deg); }

.hp-badge-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.25rem;
}

.hp-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	background: var(--hp-secondary);
	color: var(--hp-foreground);
	font-size: 0.75rem;
	font-weight: 700;
}

.hp-pill__icon {
	color: var(--hp-primary);
	font-size: 0.875rem;
}

.hp-text-link {
	display: inline-block;
	margin-top: 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--hp-primary);
}

.hp-text-link:hover {
	text-decoration: underline;
}

.hp-wave-divider {
	width: 100%;
	line-height: 0;
	margin: -1px 0;
}

.hp-wave-divider svg {
	display: block;
	width: 100%;
	height: 2rem;
}

.hp-wave-divider path {
	fill: color-mix(in srgb, var(--hp-secondary) 50%, transparent);
}

.hp-wave-divider--flip svg {
	transform: rotate(180deg);
}

.hp-section-header {
	margin-bottom: 3.5rem;
}

.hp-services__grid,
.hp-testimonials__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.hp-service-card,
.hp-testimonial-card {
	display: flex;
	flex-direction: column;
	border-radius: 1rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hp-service-card {
	padding: 2rem;
	background: var(--hp-card);
	box-shadow: 0 4px 24px -6px color-mix(in srgb, var(--hp-primary) 10%, transparent);
	text-align: center;
}

.hp-service-card:hover,
.hp-testimonial-card:hover {
	transform: translateY(-4px) rotate(-2deg) scale(1.02);
	box-shadow: 0 8px 32px -8px color-mix(in srgb, var(--hp-primary) 18%, transparent);
}

.hp-service-card__icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	margin: 0 auto 1rem;
	border-radius: 1rem;
	background: var(--hp-secondary);
}

.hp-service-card__icon {
	font-size: 1.75rem;
	color: var(--hp-primary);
}

.hp-service-card__title,
.hp-service-card__price,
.hp-contact-meta__value,
.hp-footer__brand {
	font-family: "Playfair Display", serif;
}

.hp-service-card__title {
	margin: 0 0 0.25rem;
	font-size: 1.25rem;
	color: var(--hp-heading);
}

.hp-service-card__price {
	margin: 0 0 0.25rem;
	font-size: 1.875rem;
	color: var(--hp-primary);
}

.hp-service-card__note {
	margin: 0 0 1rem;
	font-size: 0.75rem;
	color: var(--hp-muted-foreground);
}

.hp-service-card__description {
	flex: 1;
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.7;
	color: var(--hp-muted-foreground);
	white-space: pre-line;
}

.hp-testimonial-card {
	padding: 2rem;
	background: var(--hp-secondary);
}

.hp-testimonial-card__quote {
	width: 2.5rem;
	color: color-mix(in srgb, var(--hp-primary) 20%, transparent);
	transform: rotate(-6deg);
	margin-bottom: 1rem;
}

.hp-testimonial-card__text {
	flex: 1;
	margin: 0 0 1.5rem;
	font-style: italic;
	line-height: 1.7;
	white-space: pre-line;
}

.hp-testimonial-card__name {
	margin: 0;
	font-family: "Playfair Display", serif;
	font-size: 0.875rem;
	color: var(--hp-heading);
}

.hp-cta__card {
	display: flex;
	flex-direction: column;
	max-width: 64rem;
	margin: 0 auto;
	overflow: hidden;
	border: 1px solid color-mix(in srgb, var(--hp-primary) 30%, transparent);
	border-radius: 1rem;
	background: color-mix(in srgb, var(--hp-primary) 5%, var(--hp-card));
	box-shadow: 0 2px 12px color-mix(in srgb, var(--hp-primary) 8%, transparent);
}

.hp-cta__image {
	flex-shrink: 0;
	min-height: 16rem;
}

.hp-cta__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	text-align: center;
}

.hp-cta__heart {
	width: 2rem;
	margin-bottom: 0.75rem;
	color: var(--hp-primary);
}

.hp-cta__title {
	font-size: 1.35rem;
	margin-bottom: 0.5rem;
}

.hp-cta__text {
	margin-bottom: 1.25rem;
}

.hp-contact__media,
.hp-contact__content {
	width: 100%;
}

.hp-contact__header {
	margin-bottom: 2rem;
	text-align: center;
}

.hp-contact__title {
	margin-bottom: 0.75rem;
}

.hp-contact__support {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	font-size: 0.875rem;
	font-style: italic;
	color: var(--hp-muted-foreground);
}

.hp-contact__support-icon {
	width: 0.875rem;
	color: var(--hp-primary);
}

.hp-contact__support span[data-setting="contact_support_text"] {
	padding-left: 20px;
}

.hp-contact__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 2rem;
}

.hp-contact-meta {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
}

.hp-contact-meta__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.75rem;
	background: var(--hp-secondary);
	color: var(--hp-primary);
	font-size: 1rem;
}

.hp-contact-meta__copy {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.hp-contact-meta__label {
	font-size: 0.75rem;
	color: var(--hp-muted-foreground);
}

.hp-contact-meta__value {
	font-size: 0.95rem;
	font-weight: 700;
	transition: color 0.25s ease;
}

.hp-contact-form {
	display: grid;
	gap: 1.25rem;
}

.hp-contact-form input,
.hp-contact-form textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--hp-input);
	border-radius: 0.75rem;
	background: var(--hp-card);
	color: var(--hp-card-foreground);
	box-shadow: 0 0 0 0 var(--hp-ring);
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.hp-contact-form input {
	min-height: 3rem;
}

.hp-contact-form textarea {
	min-height: 8rem;
	resize: vertical;
}

.hp-contact-form input::placeholder,
.hp-contact-form textarea::placeholder {
	color: var(--hp-muted-foreground);
}

.hp-contact-form input:focus,
.hp-contact-form textarea:focus {
	outline: none;
	border-color: var(--hp-ring);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--hp-ring) 20%, transparent);
}

.hp-footer {
	padding: 2.5rem 0;
	border-top: 1px solid var(--hp-border);
	text-align: center;
}

.hp-footer__inner {
	max-width: 64rem;
}

.hp-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	font-size: 1.125rem;
	color: var(--hp-heading);
}

.hp-footer__paws {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 0.75rem;
	color: color-mix(in srgb, var(--hp-primary) 20%, transparent);
}

.hp-footer__paw {
	width: 0.75rem;
}

.hp-footer__paw:nth-child(odd) {
	transform: rotate(-10deg);
}

.hp-footer__paw:nth-child(even) {
	transform: rotate(10deg);
}

.hp-footer__tagline,
.hp-footer__copyright,
.hp-footer__builder {
	margin: 0;
	color: var(--hp-muted-foreground);
}

.hp-footer__tagline {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	margin-bottom: 0.25rem;
	font-size: 0.875rem;
}

.hp-footer__tagline-icon {
	width: 0.75rem;
	color: var(--hp-primary);
}

.hp-footer__tagline [data-setting="footer_tagline_text"] {
	padding-left: 12px;
}

.hp-footer__copyright,
.hp-footer__builder {
	font-size: 0.75rem;
}

.hp-footer__builder {
	margin-top: 0.5rem;
}

.hp-footer__builder a {
	color: var(--hp-primary);
}

.hp-toast {
	position: fixed;
	top: 1rem;
	left: 1rem;
	right: 1rem;
	z-index: 100;
	display: flex;
	justify-content: center;
	pointer-events: none;
	opacity: 0;
	transform: translateY(-1rem);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.hp-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.hp-toast__card {
	width: min(100%, 26rem);
	padding: 1rem 1.25rem;
	border: 1px solid var(--hp-border);
	border-radius: 0.75rem;
	background: var(--hp-background);
	color: var(--hp-foreground);
	box-shadow: 0 15px 40px color-mix(in srgb, var(--hp-foreground) 12%, transparent);
}

.hp-toast__title,
.hp-toast__description {
	margin: 0;
}

.hp-toast__title {
	margin-bottom: 0.35rem;
	font-size: 0.875rem;
	font-weight: 700;
}

.hp-toast__description {
	font-size: 0.875rem;
	opacity: 0.9;
}

.hp-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hp-intro-up {
	animation: hp-intro-up 0.7s ease-out both;
}

.hp-intro-scale {
	animation: hp-intro-scale 0.7s ease-out 0.2s both;
}

.hp-badge-pop {
	animation: hp-badge-pop 0.5s cubic-bezier(0.2, 1.2, 0.4, 1) 0.6s both;
	transform-origin: center;
}

.hp-button--bounce:hover {
	animation: hp-bounce-gentle 0.4s ease-in-out;
}

.hp-is-empty,
.hp-is-hidden {
	display: none !important;
}

@keyframes hp-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

@keyframes hp-intro-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes hp-intro-scale {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes hp-badge-pop {
	from {
		opacity: 0;
		transform: rotate(-8deg) scale(0);
	}
	to {
		opacity: 1;
		transform: rotate(-8deg) scale(1);
	}
}

@keyframes hp-bounce-gentle {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

@media (min-width: 768px) {
	.hp-navbar__desktop {
		display: flex;
	}

	.hp-menu-toggle {
		display: none;
	}

	.hp-hero {
		padding-top: 8rem;
		padding-bottom: 6rem;
	}

	.hp-hero__grid,
	.hp-about__grid,
	.hp-contact__grid {
		flex-direction: row;
		align-items: center;
	}

	.hp-hero__grid {
		gap: 4rem;
	}

	.hp-about__grid {
		align-items: center;
	}

	.hp-contact__grid {
		align-items: stretch;
	}

	.hp-contact__media {
		width: 20rem;
		max-width: 20rem;
		flex-shrink: 0;
	}

	.hp-hero__content,
	.hp-about__content,
	.hp-contact__content {
		text-align: left;
	}

	.hp-hero__text {
		margin-left: 0;
		margin-right: 0;
	}

	.hp-hero__actions {
		flex-direction: row;
		justify-content: flex-start;
	}

	.hp-badge-list {
		justify-content: flex-start;
	}

	.hp-services__grid,
	.hp-testimonials__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.hp-cta__card {
		flex-direction: row;
		align-items: stretch;
	}

	.hp-cta__image {
		width: 14rem;
		min-height: auto;
	}

	.hp-contact__header {
		text-align: left;
	}

	.hp-contact__meta {
		justify-content: flex-start;
	}

	.hp-toast {
		top: auto;
		right: 1rem;
		bottom: 1rem;
		left: auto;
		justify-content: flex-end;
	}
}

@media (min-width: 1024px) {
	.hp-nav-link,
	.hp-button--nav {
		font-size: 0.875rem;
	}

	.hp-image-frame--hero {
		width: 24rem;
	}

	.hp-image-frame--about {
		width: 18rem;
	}

	.hp-cta__image {
		width: 16rem;
	}

	.hp-contact__media {
		width: 24rem;
		max-width: 24rem;
	}
}
