:root {
	--color-bg: #ffffff;
	--color-bg-soft: #f3f6f8;
	--color-bg-warm: #faf8f3;
	--color-text: #14212b;
	--color-muted: #566571;
	--color-line: #dfe6eb;
	--color-accent: #b98729;
	--color-accent-dark: #815b18;
	--color-primary: #12344d;
	--color-primary-soft: #eaf2f7;
	--color-charcoal: #182631;
	--shadow-soft: 0 20px 70px rgba(18, 52, 77, 0.12);
	--shadow-card: 0 16px 46px rgba(18, 52, 77, 0.08);
	--shadow-premium: 0 28px 90px rgba(13, 38, 56, 0.16);
	--line-premium: rgba(185, 135, 41, 0.28);
	--font-body: "Manrope", Arial, sans-serif;
	--font-heading: "Manrope", Arial, sans-serif;
	--container: 1180px;
	--radius: 18px;
}

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

html {
	scroll-behavior: auto;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 8% 2%, rgba(185, 135, 41, 0.07), transparent 24rem),
		radial-gradient(circle at 92% 18%, rgba(18, 52, 77, 0.06), transparent 26rem),
		linear-gradient(180deg, #ffffff 0%, #f8fafb 46%, #ffffff 100%);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.68;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

::selection {
	background: rgba(185, 135, 41, 0.24);
	color: var(--color-text);
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color 220ms ease;
}

a:hover {
	color: var(--color-accent-dark);
}

p {
	margin: 0 0 1.2rem;
	color: var(--color-muted);
	font-weight: 450;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 1rem;
	color: var(--color-text);
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.012em;
}

h1 {
	font-size: clamp(2.45rem, 4.7vw, 4.85rem);
	font-weight: 750;
	line-height: 1.08;
}

h2 {
	font-size: clamp(1.85rem, 3vw, 3rem);
}

h3 {
	font-size: clamp(1.25rem, 1.7vw, 1.65rem);
	line-height: 1.25;
}

button,
input,
textarea,
select {
	font: inherit;
}

input,
textarea,
select {
	width: 100%;
	border: 1px solid var(--color-line);
	border-radius: 14px;
	padding: 0.9rem 1rem;
	background: #fff;
	color: var(--color-text);
}

textarea {
	min-height: 150px;
	resize: vertical;
}

:focus-visible {
	outline: 3px solid rgba(184, 138, 44, 0.35);
	outline-offset: 3px;
}

.container {
	width: min(100% - 40px, var(--container));
	margin-inline: auto;
}

.container.narrow {
	width: min(100% - 40px, 860px);
}

.section {
	position: relative;
	padding: clamp(76px, 9vw, 118px) 0;
}

.section + .section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: min(100% - 40px, var(--container));
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(18, 52, 77, 0.08), transparent);
	transform: translateX(-50%);
}

.section-heading {
	max-width: 820px;
	margin-bottom: clamp(32px, 5vw, 64px);
}

.inline-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	max-width: none;
}

.section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 1rem;
	padding: 0.42rem 0.72rem;
	border: 1px solid rgba(185, 135, 41, 0.24);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 243, 0.92));
	color: var(--color-primary);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.045em;
	text-transform: uppercase;
}

.section-kicker::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-accent);
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 10px;
	z-index: 9999;
	padding: 10px 14px;
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.skip-link:focus {
	left: 10px;
}

.btn,
button.btn,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.95rem 1.35rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
	will-change: transform;
}

.btn:hover,
input[type="submit"]:hover {
	transform: translateY(-3px);
}

.btn-primary,
input[type="submit"] {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%),
		linear-gradient(135deg, var(--color-primary), #0d2638);
	color: #fff;
	box-shadow: 0 16px 38px rgba(18, 52, 77, 0.26);
}

.btn-primary:hover {
	color: #fff;
	background: linear-gradient(135deg, #0d2638, #071a27);
}

.btn-secondary {
	border-color: rgba(185, 135, 41, 0.28);
	background: rgba(255, 255, 255, 0.92);
	color: var(--color-primary);
	box-shadow: 0 10px 26px rgba(18, 52, 77, 0.06);
}

.btn-small {
	min-height: 40px;
	padding: 0.65rem 1rem;
	font-size: 0.9rem;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.9);
	border-bottom: 1px solid rgba(185, 135, 41, 0.12);
	box-shadow: 0 14px 42px rgba(18, 52, 77, 0.055);
	backdrop-filter: blur(20px);
	transition: box-shadow 260ms ease, background 260ms ease;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 84px;
	gap: 24px;
}

.site-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
}

.brand-mark {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(18, 52, 77, 0.16);
	border-radius: 14px;
	background:
		linear-gradient(135deg, rgba(185, 135, 41, 0.28), transparent 48%),
		var(--color-primary);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.brand-text {
	display: grid;
	line-height: 1.1;
}

.brand-text small {
	color: var(--color-muted);
	font-weight: 600;
}

.primary-nav .menu {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.95rem;
	font-weight: 700;
}

.primary-nav .menu li {
	position: relative;
}

.primary-nav .sub-menu {
	position: absolute;
	top: calc(100% + 16px);
	left: 0;
	z-index: 20;
	display: grid;
	min-width: 260px;
	gap: 4px;
	margin: 0;
	padding: 12px;
	list-style: none;
	border: 1px solid rgba(18, 52, 77, 0.08);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--shadow-card);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav .menu li:hover > .sub-menu,
.primary-nav .menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.primary-nav .sub-menu a {
	display: block;
	padding: 0.72rem 0.8rem;
	border-radius: 10px;
	color: var(--color-text);
	font-size: 0.9rem;
}

.primary-nav .sub-menu a:hover,
.primary-nav .sub-menu a:focus {
	background: var(--color-primary-soft);
	color: var(--color-primary);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 0.92rem;
	font-weight: 700;
}

.menu-toggle {
	display: none;
	border: 0;
	background: transparent;
	color: var(--color-text);
	font-weight: 700;
}

.site-main {
	overflow: hidden;
}

.page-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(100px, 12vw, 150px) 0 clamp(58px, 7vw, 90px);
	background:
		radial-gradient(circle at 82% 12%, rgba(185, 135, 41, 0.16), transparent 28%),
		linear-gradient(135deg, #ffffff 0%, #f3f7fa 76%, #fbf8f1 100%);
}

.page-hero::after {
	content: "";
	position: absolute;
	inset: 12% -8% auto auto;
	width: 46vw;
	height: 46vw;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(18, 52, 77, 0.08), transparent 64%);
	pointer-events: none;
}

.page-hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
	gap: clamp(34px, 6vw, 86px);
	align-items: center;
}

.page-hero-copy {
	max-width: 780px;
}

.page-hero-carousel {
	position: relative;
	min-height: clamp(360px, 34vw, 520px);
	border: 10px solid rgba(255, 255, 255, 0.84);
	border-radius: 28px;
	background: var(--color-bg-soft);
	box-shadow: var(--shadow-premium);
	overflow: hidden;
}

.page-hero-slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transform: scale(1.03);
	transition: opacity 540ms ease, transform 760ms ease;
}

.page-hero-slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.page-hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.92) contrast(1.04);
}

.page-hero-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 44%, rgba(7, 28, 42, 0.58));
}

.page-hero-slide figcaption {
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 22px;
	z-index: 2;
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.52);
	border-left: 4px solid var(--color-accent);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 18px 50px rgba(7, 28, 42, 0.18);
	backdrop-filter: blur(12px);
}

.page-hero-slide span {
	display: block;
	margin-bottom: 6px;
	color: var(--color-accent-dark);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.page-hero-slide strong {
	display: block;
	color: var(--color-primary);
	font-size: 1.05rem;
	line-height: 1.25;
}

.content-area {
	font-size: 1.08rem;
}

.content-area a {
	color: var(--color-accent-dark);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.post-featured img {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.site-footer {
	padding: 76px 0 28px;
	background: var(--color-charcoal);
	color: #fff;
}

.site-footer p,
.site-footer a,
.site-footer li {
	color: rgba(255, 255, 255, 0.72);
}

.site-footer h2,
.site-footer h3 {
	color: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.25fr 1fr;
	gap: 36px;
}

.footer-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 56px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 0.9rem;
}

.whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 50%;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 46%),
		#1f9d55;
	color: #fff;
	box-shadow: 0 18px 44px rgba(31, 143, 77, 0.34);
	transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.whatsapp-float svg {
	width: 30px;
	height: 30px;
	fill: currentColor;
}

.whatsapp-float:hover {
	color: #fff;
	background: #168846;
	box-shadow: 0 22px 54px rgba(31, 143, 77, 0.42);
	transform: translateY(-3px);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

