:root {
	--color-primary: #1565d8;
	--color-secondary: #ffb703;
	--color-text: #162033;
	--color-muted: #5e6b7f;
	--color-bg: #f6f8fb;
	--color-surface: #ffffff;
	--color-border: #dbe3ef;
	--radius: 18px;
	--container: 1180px;
	--space: clamp(20px, 4vw, 64px);
	--shadow: 0 18px 50px rgba(22, 32, 51, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	background: var(--color-bg);
	color: var(--color-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
	margin: 0;
}
img { height: auto; max-width: 100%; }
a { color: inherit; }
:focus-visible {
	outline: 3px solid rgba(21, 101, 216, .55);
	outline-offset: 3px;
}
.container {
	margin-inline: auto;
	max-width: var(--container);
	padding-inline: 20px;
	width: 100%;
}
.skip-link {
	background: var(--color-primary);
	color: #fff;
	left: 12px;
	padding: 10px 14px;
	position: fixed;
	top: -80px;
	z-index: 1000;
}
.skip-link:focus { top: 12px; }
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}
.site-header {
	backdrop-filter: blur(16px);
	background: rgba(255, 255, 255, .88);
	border-bottom: 1px solid rgba(219, 227, 239, .8);
	position: sticky;
	top: 0;
	z-index: 50;
}
.header-inner {
	align-items: center;
	display: flex;
	gap: clamp(20px, 4vw, 54px);
	justify-content: space-between;
	min-height: 76px;
}
.site-brand {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	font-weight: 900;
	gap: 10px;
	line-height: 1;
	text-decoration: none;
}
.site-logo {
	display: block;
	height: auto;
	inline-size: clamp(100px, 18vw, 100px);
	max-inline-size: 100%;
}
.site-title{
	color: #003b60;
}
.brand-mark {
	align-items: center;
	background: var(--color-text);
	border-radius: 12px;
	color: #fff;
	display: inline-flex;
	height: 42px;
	justify-content: center;
	width: 42px;
}
.primary-nav,
.primary-nav ul {
	align-items: center;
	display: flex;
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.primary-nav {
	margin-inline-start: auto;
}
.language-selector select {
	background: #eef3f8;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	color: var(--color-text);
	font: inherit;
	font-size: .82rem;
	font-weight: 800;
	padding: 7px 30px 7px 10px;
}
.primary-nav a {
	color: var(--color-muted);
	font-weight: 800;
	text-decoration: none;
}
.primary-nav a:hover { color: var(--color-primary); }
.primary-nav .button,
.primary-nav .button:hover {
	color: #fff;
}
.menu-toggle {
	display: none;
}
.menu-toggle__icon {
	display: grid;
	gap: 5px;
	width: 22px;
}
.menu-toggle__icon span {
	background: currentColor;
	border-radius: 999px;
	display: block;
	height: 2px;
	transition: opacity .2s ease, transform .2s ease;
	width: 100%;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:first-child {
	transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) {
	opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:last-child {
	transform: translateY(-7px) rotate(-45deg);
}
.button,
.wp-block-button__link {
	align-items: center;
	background: var(--color-primary);
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-weight: 900;
	justify-content: center;
	min-height: 46px;
	padding: 13px 22px;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover {
	box-shadow: 0 14px 28px rgba(21, 101, 216, .22);
	transform: translateY(-2px);
}
.button-secondary {
	background: #fff;
	color: var(--color-text);
}
.button-small {
	min-height: 40px;
	padding: 10px 16px;
}
.hero {
	background:
		linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
		linear-gradient(125deg, #071629 0%, #102b50 52%, #0b1e37 100%);
	background-size: 52px 52px, 52px 52px, auto;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(64px, 8vw, 112px) 0;
	position: relative;
}
.hero::before {
	background: linear-gradient(90deg, rgba(5, 18, 34, .42), transparent 68%);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 0;
}
.hero::after {
	background: linear-gradient(180deg, transparent, rgba(5, 15, 28, .32));
	block-size: 30%;
	content: "";
	inset-block-end: 0;
	inset-inline: 0;
	position: absolute;
	z-index: 0;
}
.hero-bg {
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 0;
}
.hero-bg__glow,
.hero-bg__road {
	position: absolute;
}
.hero-bg__glow {
	animation: hero-float 9s ease-in-out infinite;
	border-radius: 50%;
	filter: blur(8px);
}
.hero-bg__glow--primary {
	background: rgba(21, 101, 216, .36);
	block-size: clamp(300px, 40vw, 600px);
	inset-block-start: -22%;
	inset-inline-end: -8%;
	inline-size: clamp(300px, 40vw, 600px);
}
.hero-bg__glow--accent {
	animation: hero-float 11s ease-in-out infinite reverse;
	background: rgba(255, 183, 3, .15);
	block-size: clamp(220px, 28vw, 420px);
	inset-block-end: -22%;
	inset-inline-start: 28%;
	inline-size: clamp(220px, 28vw, 420px);
}
.hero-bg__road {
	background: repeating-linear-gradient(90deg, transparent 0 70px, rgba(255, 255, 255, .3) 70px 116px, transparent 116px 170px);
	block-size: 2px;
	inset-block-end: 17%;
	inset-inline: 0;
	opacity: .45;
	transform: perspective(300px) rotateX(65deg) scaleX(1.2);
}
.hero-grid {
	align-items: center;
	display: grid;
	gap: clamp(32px, 5vw, 72px);
	grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
	position: relative;
	z-index: 1;
}
.eyebrow {
	color: var(--color-primary);
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}
h1,
h2,
h3,
p { overflow-wrap: anywhere; }
h1 {
	font-size: clamp(2.5rem, 7vw, 5.25rem);
	letter-spacing: 0;
	line-height: .98;
	margin: 0 0 22px;
}
h2 {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	letter-spacing: 0;
	line-height: 1.06;
	margin: 0;
}
h3 { line-height: 1.15; margin: 0; }
.hero-copy {
	animation: hero-copy-rise .48s cubic-bezier(.2, .8, .2, 1) both;
	max-width: 720px;
	position: relative;
}
.hero .eyebrow {
	align-items: center;
	background: rgba(255, 255, 255, .09);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 999px;
	color: #dceaff;
	display: inline-flex;
	gap: 9px;
	margin: 0 0 20px;
	padding: 8px 13px;
}
.hero .eyebrow::before {
	background: var(--color-secondary);
	border-radius: 999px;
	box-shadow: 0 0 0 5px rgba(255, 183, 3, .16);
	content: "";
	height: 8px;
	width: 8px;
}
.hero h1,
.hero h2 {
	color: #fff;
	font-size: clamp(2rem, 3.6vw, 3.35rem);
	letter-spacing: 0;
	line-height: .98;
	margin: 0;
	max-width: 840px;
	text-wrap: balance;
}
.hero-copy > p:not(.eyebrow) {
	color: #d6e2f2;
	display: block;
	font-size: clamp(1.05rem, 1.8vw, 1.28rem);
	line-height: 1.72;
	margin: 24px 0 0;
	max-width: 670px;
}
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 34px 0 22px;
}
.hero-actions .button {
	background: linear-gradient(135deg, #1565d8, #3f8cf4);
	box-shadow: 0 18px 34px rgba(21, 101, 216, .24);
	min-height: 56px;
	padding-inline: 26px;
}
.hero-actions .button:hover {
	box-shadow: 0 24px 42px rgba(21, 101, 216, .28);
}
.hero-actions .button-secondary {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .24);
	box-shadow: none;
	color: #fff;
}
.hero-actions .button-secondary:hover {
	background: #fff;
	box-shadow: 0 18px 36px rgba(22, 32, 51, .12);
}
.hero-features {
	display: grid;
	gap: 16px;
	justify-self: stretch;
}
.hero-feature-card {
	align-items: center;
	animation: hero-card-rise .62s cubic-bezier(.2, .8, .2, 1) both;
	backdrop-filter: blur(14px);
	background: linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06));
	border: 1px solid rgba(255, 255, 255, .17);
	border-radius: 20px;
	box-shadow: 0 20px 44px rgba(0, 0, 0, .16);
	color: #eaf2fd;
	display: grid;
	gap: 16px;
	grid-template-columns: auto minmax(0, 1fr);
	padding: 20px;
	transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.hero-feature-card:nth-child(2) {
	animation-delay: .1s;
}
.hero-feature-card:nth-child(3) {
	animation-delay: .2s;
}
.hero-feature-card:hover {
	background: linear-gradient(135deg, rgba(255, 255, 255, .17), rgba(255, 255, 255, .08));
	border-color: rgba(109, 170, 255, .48);
	transform: translateY(-4px);
}
.hero-feature-card__icon {
	align-items: center;
	background: linear-gradient(135deg, #2f7de8, #155fc8);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 16px;
	box-shadow: 0 12px 26px rgba(21, 101, 216, .28);
	color: #fff;
	display: inline-flex;
	height: 54px;
	justify-content: center;
	width: 54px;
}
.hero-feature-card__icon svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}
.hero-feature-card h3 {
	color: #fff;
	font-size: 1.08rem;
	margin: 0 0 5px;
}
.hero-feature-card p {
	color: #c8d7ea;
	font-size: .94rem;
	line-height: 1.55;
	margin: 0;
}
.section { padding: var(--space) 0; }
.section-heading {
	margin-bottom: 28px;
	max-width: 720px;
}
.car-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cars-section__more {
	display: flex;
	justify-content: center;
	margin-block-start: 30px;
	transition: opacity .2s ease, transform .2s ease;
}
.cars-section__more.is-hiding {
	opacity: 0;
	transform: translateY(8px);
}
.cars-section__more .button-secondary {
	border: 1px solid var(--color-border);
	box-shadow: 0 10px 24px rgba(22, 32, 51, .08);
}
.car-card--extra.is-revealed {
	animation: car-card-reveal .52s cubic-bezier(.2, .8, .2, 1) var(--car-reveal-delay, 0ms) both;
}
@keyframes car-card-reveal {
	from {
		opacity: 0;
		transform: translateY(22px) scale(.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
.car-card,
.feature-card,
.empty-state {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: 0 10px 28px rgba(22, 32, 51, .06);
}
.car-card {
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}
.car-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-4px);
}
.car-card.is-unavailable { opacity: .62; }
.car-card__image {
	aspect-ratio: 5 / 3.4;
	background: #edf3fb;
	position: relative;
}
.car-card__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.availability-badge {
	background: rgba(255, 255, 255, .92);
	border-radius: 999px;
	font-size: .78rem;
	font-weight: 900;
	padding: 7px 10px;
	position: absolute;
	right: 12px;
	top: 12px;
}
.car-card__body {
	display: grid;
	gap: 10px;
	padding: 15px;
}
.car-card__body h3 {
	font-size: 1.05rem;
}
.car-price {
	color: var(--color-primary);
	font-size: 1rem;
	font-weight: 900;
	margin: 0;
}
.car-price span {
	color: var(--color-muted);
	font-size: .9rem;
}
.car-specs {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}
.car-specs li {
	background: #f2f6fb;
	border-radius: 10px;
	color: var(--color-muted);
	font-size: .9rem;
	font-weight: 800;
	padding: 8px 10px;
}
.car-details-link {
	justify-self: start;
	margin-top: 2px;
}
.availability-badge.is-static {
	position: static;
}
.availability-badge--available {
	align-items: center;
	background: #ecfdf3;
	border: 1px solid rgba(18, 140, 74, .18);
	box-shadow: 0 10px 22px rgba(18, 140, 74, .1);
	color: #0f7d42;
	display: inline-flex;
	gap: 7px;
}
.availability-badge__dot {
	background: #12b76a;
	border-radius: 999px;
	box-shadow: 0 0 0 5px rgba(18, 183, 106, .14);
	height: 7px;
	width: 7px;
}
.car-detail-hero {
	background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
	padding-bottom: clamp(6px, 1vw, 12px);
}
.car-detail-section {
	padding-top: 0;
}
.car-detail-grid {
	align-items: start;
	display: grid;
	/* gap: var(--space); */
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
	/* grid-template-columns: minmax(0, 1.1fr) minmax(320px, .8fr); */
	height: auto;
}
.car-gallery {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	height: 100%;
}
.car-gallery__item {
	background: #edf3fb;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: 0 10px 28px rgba(22, 32, 51, .06);
	margin: 0;
	overflow: hidden;
}
.car-gallery__item.is-featured {
	grid-column: 1 / -1;
}
.car-gallery__item img {
	aspect-ratio: 4 / 2.65;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.car-gallery__item:not(.is-featured) img {
	aspect-ratio: 4 / 3;
}
.car-detail-summary,
.car-spec-panel,
.car-reservation-panel {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: clamp(20px, 3vw, 30px);
	height: 100%;
}
/* .car-detail-summary {
	position: sticky;
	top: 96px;
} */
.car-detail-summary h1 {
	font-size: clamp(2.1rem, 4vw, 3.8rem);
}
.car-detail-meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 18px 0;
}
.car-detail-price {
	background: #eef6ff;
	border-radius: 999px;
	color: var(--color-primary);
	font-weight: 900;
	padding: 8px 12px;
}
.car-detail-description {
	color: var(--color-muted);
	margin-bottom: 22px;
}
.car-detail-actions {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.car-detail-content-grid {
	align-items: start;
	display: grid;
	gap: 22px;
	/* grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr); */
}
.car-reservation-alert[hidden] {
	display: none;
}
.car-reservation-alert {
	align-items: flex-start;
	animation: reservation-alert-pop .28s ease both;
	background: #fff3cd;
	border: 1px solid #f6c343;
	border-inline-start: 5px solid #b42318;
	border-radius: 14px;
	box-shadow: 0 16px 34px rgba(180, 35, 24, .14);
	color: #4f1f17;
	display: flex;
	gap: 12px;
	margin: 0 0 18px;
	padding: 14px;
}
.car-reservation-alert__icon {
	align-items: center;
	background: #b42318;
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	flex: 0 0 auto;
	height: 42px;
	justify-content: center;
	width: 42px;
}
.car-reservation-alert strong {
	color: #842029;
	display: block;
	font-size: 1rem;
	line-height: 1.25;
	margin-block-end: 4px;
}
.car-reservation-alert p {
	color: #5f2a20;
	font-weight: 700;
	line-height: 1.45;
	margin: 0;
}
@keyframes reservation-alert-pop {
	from {
		opacity: 0;
		transform: translateY(-8px) scale(.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
.car-spec-detail-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	margin: 0;
}
.car-spec-detail-grid div {
	background: #f6f8fb;
	border: 1px solid var(--color-border);
	border-radius: 14px;
	padding: 14px;
}
.car-spec-detail-grid dt {
	align-items: center;
	color: var(--color-muted);
	display: flex;
	font-size: .82rem;
	font-weight: 800;
	gap: 6px;
}
.car-spec-detail-grid dd {
	color: var(--color-text);
	font-size: 1.05rem;
	font-weight: 900;
	margin: 4px 0 0;
}
.car-spec-icon {
	align-items: center;
	background: #eef6ff;
	border-radius: 999px;
	color: var(--color-primary);
	display: inline-flex;
	flex: 0 0 auto;
	height: 22px;
	justify-content: center;
	width: 22px;
}
.car-spec-icon svg {
	display: block;
	fill: currentColor;
}
.car-whatsapp-button {
	width: 100%;
}
.car-reserve {
	box-shadow: 0 16px 30px rgba(21, 101, 216, .22);
	width: 100%;
}
.car-reserve.is-disabled {
	background: #e7edf5;
	box-shadow: none;
	color: #7a8798;
	cursor: not-allowed;
	pointer-events: none;
}
.feature-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.feature-card {
	padding: 24px;
}
.feature-card span {
	align-items: center;
	background: var(--color-secondary);
	border-radius: 999px;
	display: inline-flex;
	font-weight: 900;
	height: 32px;
	justify-content: center;
	margin-bottom: 16px;
	width: 32px;
}
.about-section,
.cars-section,
.contact-section {
	background: #fff;
}
.google-reviews-section {
	background:
		linear-gradient(118deg, rgba(21, 101, 216, .08), transparent 42%),
		linear-gradient(298deg, rgba(255, 183, 3, .13), transparent 36%),
		linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
}
.google-review-panel {
	align-items: center;
	animation: section-rise .6s ease both;
	background: rgba(255, 255, 255, .82);
	border: 1px solid rgba(219, 227, 239, .9);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: grid;
	gap: clamp(18px, 3vw, 34px);
	grid-template-columns: minmax(160px, .7fr) minmax(160px, .65fr) minmax(0, 1.15fr) auto;
	overflow: hidden;
	padding: clamp(22px, 4vw, 38px);
	position: relative;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.google-review-panel::before {
	background:
		linear-gradient(135deg, rgba(21, 101, 216, .1), transparent 38%),
		linear-gradient(315deg, rgba(255, 183, 3, .13), transparent 34%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}
.google-review-panel:hover {
	border-color: rgba(21, 101, 216, .22);
	box-shadow: 0 24px 64px rgba(22, 32, 51, .14);
	transform: translateY(-3px);
}
.google-review-brand,
.google-review-score,
.google-review-copy,
.google-review-button {
	position: relative;
	z-index: 1;
}
.google-review-brand {
	align-items: center;
	color: var(--color-text);
	display: flex;
	flex-wrap: wrap;
	font-weight: 900;
	gap: 10px;
}
.google-logo {
	align-items: center;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	box-shadow: 0 12px 26px rgba(22, 32, 51, .07);
	display: inline-flex;
	font-size: 1.28rem;
	font-weight: 900;
	line-height: 1;
	padding: 10px 13px;
}
.google-logo__blue { color: #4285f4; }
.google-logo__red { color: #ea4335; }
.google-logo__yellow { color: #fbbc05; }
.google-logo__green { color: #34a853; }
.google-review-score {
	display: grid;
	gap: 5px;
	justify-items: start;
}
.google-review-rating {
	color: #101827;
	font-size: clamp(2.45rem, 5vw, 4.35rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: .92;
	margin: 0;
}
.google-stars {
	color: var(--color-secondary);
	display: flex;
	font-size: 1.08rem;
	gap: 2px;
	line-height: 1;
	text-shadow: 0 6px 16px rgba(255, 183, 3, .22);
}
.google-review-count {
	color: var(--color-muted);
	font-size: .9rem;
	font-weight: 800;
	margin: 2px 0 0;
}
.google-review-copy h2 {
	font-size: clamp(1.55rem, 3vw, 2.35rem);
	margin: 0;
}
.google-review-copy p {
	color: var(--color-muted);
	font-size: 1.04rem;
	margin: 10px 0 0;
	max-width: 560px;
}
.google-review-button {
	gap: 9px;
	min-height: 54px;
	white-space: nowrap;
}

.cars-section,
.contact-section {
	background:
		radial-gradient(circle at 86% 12%, rgba(21, 101, 216, .1), transparent 26%),
		linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}
.about-grid,
.contact-grid {
	display: grid;
	gap: var(--space);
	/* grid-template-columns: .8fr 1fr; */
}
.contact-grid {
	align-items: center;
}
.about-grid p,
.contact-intro > p {
	color: var(--color-muted);
	font-size: 1.08rem;
}
.contact-intro {
	animation: section-rise .6s ease both;
}
.contact-intro > p {
	margin: 18px 0 26px;
	max-width: 560px;
}
.contact-cta {
	box-shadow: 0 16px 30px rgba(21, 101, 216, .22);
	gap: 10px;
	min-height: 54px;
	padding-inline: 24px;
}
.contact-cta__icon {
	align-items: center;
	background: rgba(255, 255, 255, .16);
	border-radius: 999px;
	display: inline-flex;
	height: 32px;
	justify-content: center;
	width: 32px;
}
.contact-list {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.contact-card {
	align-items: flex-start;
	animation: section-rise .6s ease both;
	background: rgba(255, 255, 255, .86);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: 0 10px 28px rgba(22, 32, 51, .06);
	display: flex;
	gap: 14px;
	margin: 0;
	min-height: 132px;
	padding: 20px;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.contact-card:hover {
	border-color: rgba(21, 101, 216, .28);
	box-shadow: var(--shadow);
	transform: translateY(-3px);
}
.contact-card:nth-child(2) {
	animation-delay: .06s;
}
.contact-card:nth-child(3) {
	animation-delay: .12s;
}
.contact-card:nth-child(4) {
	animation-delay: .18s;
}
.contact-card__icon {
	align-items: center;
	background: #eef6ff;
	border-radius: 14px;
	color: var(--color-primary);
	display: inline-flex;
	flex: 0 0 auto;
	height: 46px;
	justify-content: center;
	width: 46px;
}
.contact-card__icon-email {
	background: #fff8e4;
	color: #9a6700;
}
.contact-card__icon-address {
	background: #eefbf4;
	color: #128c4a;
}
.contact-card__icon-hours {
	background: #f1f0ff;
	color: #5b45d6;
}
.contact-card strong {
	color: var(--color-text);
	display: block;
	font-size: .9rem;
	margin-bottom: 5px;
}
.contact-card a,
.contact-card span {
	color: var(--color-muted);
	font-weight: 800;
	text-decoration: none;
}
.contact-card a:hover {
	color: var(--color-primary);
}
.empty-state {
	color: var(--color-muted);
	font-weight: 800;
	padding: 28px;
}
.page-section {
	background:
		radial-gradient(circle at 88% 8%, rgba(21, 101, 216, .08), transparent 28%),
		linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}
.page-container {
	max-width: var(--container);
}
.page-content {
	background: rgba(255, 255, 255, .9);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: clamp(24px, 5vw, 52px);
}
.page-header {
	border-bottom: 1px solid var(--color-border);
	margin-bottom: clamp(22px, 4vw, 34px);
	padding-bottom: 20px;
}
.page-header h1 {
	font-size: clamp(2.25rem, 5vw, 4.4rem);
	margin-bottom: 0;
}
.page-body {
	color: var(--color-muted);
	font-size: 1.05rem;
	line-height: 1.78;
}
.page-body > *:first-child {
	margin-top: 0;
}
.page-body h2,
.page-body h3 {
	color: var(--color-text);
	margin: 1.45em 0 .55em;
}
.page-body h2 {
	font-size: clamp(1.45rem, 3vw, 2.15rem);
}
.page-body h3 {
	font-size: 1.18rem;
}
.page-body ul,
.page-body ol {
	padding-inline-start: 1.25em;
}
.page-body li + li {
	margin-top: .35em;
}
.page-body a {
	color: var(--color-primary);
	font-weight: 800;
}
.whatsapp-section {
	background:
		radial-gradient(circle at 12% 20%, rgba(37, 211, 102, .16), transparent 28%),
		linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
}
.whatsapp-panel {
	align-items: center;
	animation: section-rise .6s ease both;
	background: linear-gradient(135deg, #ffffff 0%, #f1fff7 100%);
	border: 1px solid rgba(37, 211, 102, .22);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) auto;
	overflow: hidden;
	padding-block: clamp(24px, 4vw, 42px);
	position: relative;
}
.whatsapp-panel::after {
	background: linear-gradient(135deg, rgba(37, 211, 102, .16), rgba(21, 101, 216, .08));
	border-radius: 999px;
	content: "";
	height: 180px;
	inset-block-start: -90px;
	inset-inline-end: -60px;
	position: absolute;
	width: 180px;
}
.whatsapp-copy {
	max-width: 760px;
	position: relative;
	z-index: 1;
}
.whatsapp-copy p:not(.eyebrow) {
	color: var(--color-muted);
	font-size: 1.08rem;
	margin-block-end: 0;
}
.whatsapp-button {
	align-items: center;
	background: #128c4a;
	border-radius: 999px;
	box-shadow: 0 18px 32px rgba(18, 140, 74, .24);
	color: #fff;
	display: inline-flex;
	font-weight: 900;
	gap: 10px;
	justify-content: center;
	min-height: 54px;
	padding: 5px 20px;
	position: relative;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
	z-index: 1;
}
.whatsapp-button:hover {
	background: #0f7d42;
	box-shadow: 0 22px 38px rgba(18, 140, 74, .3);
	transform: translateY(-2px);
}
.whatsapp-button__icon {
	align-items: center;
	background: rgba(255, 255, 255, .16);
	border-radius: 999px;
	display: inline-flex;
	height: 34px;
	justify-content: center;
	width: 34px;
}
.whatsapp-button__text {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@keyframes section-rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes hero-copy-rise {
	from {
		opacity: .72;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes hero-float {
	0%,
	100% {
		translate: 0 0;
	}
	50% {
		translate: 14px -14px;
	}
}
@keyframes hero-card-rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.reservation-modal[hidden] { display: none; }
.reservation-modal {
	inset: 0;
	position: fixed;
	z-index: 100;
}
.reservation-modal__backdrop {
	background: rgba(6, 16, 31, .68);
	inset: 0;
	position: absolute;
}
.reservation-modal__panel {
	background: #fff;
	border-radius: 20px;
	box-shadow: var(--shadow);
	left: 50%;
	max-height: min(88vh, 900px);
	max-width: 780px;
	overflow: auto;
	padding: 26px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: min(calc(100vw - 28px), 780px);
}
.modal-close {
	background: #eef3f8;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	font-weight: 900;
	padding: 9px 14px;
	position: absolute;
	right: 18px;
	top: 18px;
}
.crm-modal-open { overflow: hidden; }
.site-footer {
	background:
		linear-gradient(135deg, rgba(21, 101, 216, .16), transparent 36%),
		linear-gradient(315deg, rgba(255, 183, 3, .12), transparent 34%),
		#101828;
	color: #d7e4f5;
	padding: clamp(38px, 6vw, 64px) 0 24px;
}
.footer-grid {
	display: grid;
	gap: clamp(24px, 4vw, 46px);
	grid-template-columns: minmax(240px, 1.25fr) minmax(250px, 1.1fr) minmax(150px, .65fr) minmax(150px, .65fr);
}
.footer-grid ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-grid h2 {
	color: #fff;
	font-size: .82rem;
	letter-spacing: 0;
	margin: 0 0 14px;
	text-transform: uppercase;
}
.footer-grid a {
	color: #fff;
	text-decoration: none;
	transition: color .2s ease, opacity .2s ease;
}
.footer-grid a:hover {
	color: #8fc2ff;
}
.footer-about p {
	color: #b9c7dc;
	margin: 18px 0 0;
	max-width: 360px;
}
.footer-logo {
	align-items: center;
	display: inline-flex;
	font-weight: 900;
	gap: 10px;
	line-height: 1;
}
.footer-logo img {
	display: block;
	height: auto;
	width: 82px;
}
.footer-contact {
	font-style: normal;
}
.footer-contact li {
	display: grid;
	gap: 3px;
	margin-bottom: 12px;
}
.footer-contact strong {
	color: #fff;
	font-size: .78rem;
	text-transform: uppercase;
}
.footer-contact span,
.footer-contact a {
	color: #c7d5ea;
	overflow-wrap: anywhere;
}
.footer-links li,
.footer-social li {
	margin-bottom: 10px;
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .15);
	color: #b9c7dc;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
	margin-top: 28px;
	padding-top: 20px;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation: none !important;
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
