:root {
	--bg: #f5efe5;
	--surface: rgba(255, 250, 243, 0.88);
	--surface-strong: #fffdf8;
	--surface-soft: #f1ebe0;
	--ink: #132531;
	--muted: #5d6c75;
	--line: rgba(19, 37, 49, 0.1);
	--accent: #0f766e;
	--accent-strong: #0a4f53;
	--accent-warm: #ec9c3c;
	--shadow: 0 22px 70px rgba(18, 31, 41, 0.12);
	--shadow-soft: 0 10px 30px rgba(18, 31, 41, 0.08);
	--radius: 24px;
	--radius-sm: 16px;
	--container: min(1180px, calc(100vw - 32px));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", "Segoe UI Variable", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at top left, rgba(15, 118, 110, 0.16), transparent 28%),
		radial-gradient(circle at bottom right, rgba(236, 156, 60, 0.14), transparent 26%),
		linear-gradient(180deg, #f7f2e9 0%, #f2ebdf 100%);
	line-height: 1.7;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

p {
	margin: 0 0 1.15rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 1rem;
	font-family: "Fraunces", Georgia, serif;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

ul,
ol {
	margin: 0 0 1rem;
	padding-left: 1.2rem;
}

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

.container {
	width: var(--container);
	margin: 0 auto;
}

.narrow {
	max-width: 760px;
}

.section {
	padding: 88px 0;
}

.section--soft {
	background: rgba(255, 255, 255, 0.38);
	backdrop-filter: blur(14px);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 0.85rem;
	font-size: 0.79rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent-strong);
}

.eyebrow::before {
	content: "";
	width: 34px;
	height: 1px;
	background: currentColor;
	opacity: 0.45;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 0.95rem 1.35rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 700;
	transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

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

.button--primary {
	background: linear-gradient(135deg, var(--accent) 0%, #148b83 100%);
	color: #fff;
	box-shadow: 0 14px 36px rgba(15, 118, 110, 0.22);
}

.button--ghost {
	border-color: rgba(19, 37, 49, 0.16);
	background: rgba(255, 255, 255, 0.5);
	color: var(--ink);
}

.button--small {
	padding: 0.72rem 1rem;
	font-size: 0.92rem;
}

.text-link {
	color: var(--accent-strong);
	font-weight: 700;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	padding: 18px 0;
	background: rgba(247, 242, 233, 0.8);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid transparent;
	transition: padding 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.site-header.is-scrolled {
	padding: 12px 0;
	border-color: rgba(19, 37, 49, 0.08);
	background: rgba(250, 246, 238, 0.92);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.site-brand img {
	width: 58px;
	height: 58px;
	object-fit: contain;
	border-radius: 16px;
}

.site-brand__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.site-brand__name {
	font-size: 1rem;
	font-weight: 800;
}

.site-brand__tagline {
	font-size: 0.84rem;
	color: var(--muted);
}

.site-nav {
	justify-self: center;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 22px;
	list-style: none;
	padding: 0;
	margin: 0;
	font-weight: 700;
}

.site-nav__list a {
	position: relative;
	color: rgba(19, 37, 49, 0.88);
}

.site-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 2px;
	background: linear-gradient(90deg, var(--accent) 0%, var(--accent-warm) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.24s ease;
}

.site-nav__list a:hover::after,
.site-nav__list .current-menu-item > a::after,
.site-nav__list .current_page_item > a::after {
	transform: scaleX(1);
}

.site-header__actions {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.site-header__chip {
	padding: 0.72rem 0.95rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(19, 37, 49, 0.08);
	font-size: 0.9rem;
	font-weight: 700;
}

.site-header__chip.is-muted {
	color: var(--muted);
}

.site-toggle {
	display: none;
	width: 50px;
	height: 50px;
	padding: 0;
	border: 0;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.78);
}

.site-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: var(--ink);
}

.hero {
	padding: 82px 0 62px;
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: 32px;
	align-items: stretch;
}

.hero__content,
.hero__visual {
	position: relative;
	padding: 40px;
	border-radius: 34px;
	background: var(--surface);
	box-shadow: var(--shadow);
	border: 1px solid rgba(255, 255, 255, 0.7);
	overflow: hidden;
}

.hero__content::before,
.hero__visual::before {
	content: "";
	position: absolute;
	inset: auto -10% -28% auto;
	width: 260px;
	height: 260px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(15, 118, 110, 0.14) 0%, transparent 68%);
}

.hero__content h1 {
	max-width: 10ch;
	font-size: clamp(2.8rem, 6vw, 5.25rem);
}

.hero__lead {
	max-width: 58ch;
	font-size: 1.08rem;
	color: var(--muted);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 28px 0 32px;
}

.stat-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.stat-card {
	padding: 18px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.62);
	border: 1px solid rgba(19, 37, 49, 0.07);
}

.stat-card strong {
	display: block;
	margin-bottom: 0.25rem;
	font-size: 1.8rem;
	font-family: "Fraunces", Georgia, serif;
}

.stat-card span {
	color: var(--muted);
	font-size: 0.95rem;
}

.hero__visual {
	display: grid;
	gap: 24px;
	align-content: space-between;
}

.hero-panel {
	padding: 28px;
	border-radius: 28px;
	background: linear-gradient(145deg, rgba(14, 78, 90, 0.98) 0%, rgba(17, 117, 126, 0.96) 100%);
	color: #f7fbfc;
	box-shadow: var(--shadow-soft);
}

.hero-panel__eyebrow {
	margin-bottom: 0.95rem;
	font-size: 0.84rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	opacity: 0.8;
}

.hero-panel__list {
	display: grid;
	gap: 12px;
	padding-left: 1.15rem;
}

.hero-orbit {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-orbit span,
.pill {
	display: inline-flex;
	align-items: center;
	padding: 0.72rem 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(19, 37, 49, 0.08);
	font-size: 0.9rem;
	font-weight: 700;
}

.pill--link:hover {
	border-color: rgba(15, 118, 110, 0.24);
}

.section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 26px;
}

.section-head h2 {
	font-size: clamp(2rem, 4vw, 3.1rem);
}

.card-grid {
	display: grid;
	gap: 22px;
}

.offer-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.offer-card {
	padding: 24px;
	border-radius: 26px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 244, 236, 0.92) 100%);
	border: 1px solid rgba(19, 37, 49, 0.08);
	box-shadow: var(--shadow-soft);
}

.offer-card h3 {
	font-size: 1.5rem;
}

.offer-card p:last-of-type {
	margin-bottom: 1.15rem;
	color: var(--muted);
}

.card-grid--destinations {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--firms,
.card-grid--posts {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border-radius: 28px;
	background: rgba(255, 253, 248, 0.9);
	border: 1px solid rgba(19, 37, 49, 0.08);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.card__body {
	display: grid;
	gap: 14px;
	padding: 24px;
}

.card__body h3 {
	font-size: 1.55rem;
}

.card__body p {
	color: var(--muted);
}

.card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	font-size: 0.9rem;
	color: var(--muted);
}

.card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.destination-card__media,
.post-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, var(--card-start, #12343b) 0%, var(--card-end, #347474) 100%);
	overflow: hidden;
}

.destination-card__media img,
.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.destination-card__media::after,
.post-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(17, 30, 35, 0.02) 0%, rgba(17, 30, 35, 0.22) 100%);
}

.destination-card__placeholder,
.post-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 24%),
		linear-gradient(135deg, var(--card-start, #12343b) 0%, var(--card-end, #347474) 100%);
}

.firm-card__head {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 12px;
	padding: 22px 22px 0;
}

.firm-card__logo {
	width: 90px;
	height: 90px;
	padding: 12px;
	border-radius: 24px;
	background: #fff;
	border: 1px solid rgba(19, 37, 49, 0.08);
	box-shadow: var(--shadow-soft);
}

.firm-card__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.inline-list,
.detail-list {
	display: grid;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.inline-list li {
	font-size: 0.92rem;
	color: var(--muted);
}

.page-hero {
	padding: 72px 0 18px;
}

.page-hero--compact {
	padding-bottom: 8px;
}

.page-hero--article .featured-figure,
.featured-figure {
	margin-top: 28px;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.page-hero--destination {
	position: relative;
	padding: 76px 0 38px;
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 20%),
		linear-gradient(135deg, var(--hero-start, #12343b) 0%, var(--hero-end, #347474) 100%);
	color: #f8fdfd;
}

.page-hero--destination .eyebrow,
.page-hero--destination .pill,
.page-hero--destination .page-hero__lead,
.page-hero--destination .breadcrumbs a,
.page-hero--destination .breadcrumbs span {
	color: inherit;
}

.page-hero h1 {
	font-size: clamp(2.5rem, 5vw, 4.3rem);
}

.page-hero__lead {
	max-width: 62ch;
	font-size: 1.08rem;
	color: var(--muted);
}

.article-meta,
.pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
}

.breadcrumbs {
	margin-bottom: 18px;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.92rem;
	color: var(--muted);
}

.breadcrumbs li:not(:last-child)::after {
	content: "/";
	margin-left: 8px;
	opacity: 0.35;
}

.layout-split {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.75fr);
	gap: 28px;
	align-items: start;
}

.detail-panel {
	position: sticky;
	top: 108px;
	padding: 26px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(19, 37, 49, 0.08);
	box-shadow: var(--shadow-soft);
}

.detail-panel h2 {
	margin-bottom: 1rem;
	font-size: 1.6rem;
}

.detail-list li {
	display: grid;
	gap: 4px;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--line);
}

.detail-list li:last-child {
	border-bottom: 0;
}

.detail-list strong {
	font-size: 0.86rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--muted);
}

.stack-actions {
	display: grid;
	gap: 12px;
	margin-top: 22px;
}

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

.check-list li {
	position: relative;
	padding-left: 1.5rem;
}

.check-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--accent);
}

.prose {
	font-size: 1.02rem;
}

.prose > * + * {
	margin-top: 1rem;
}

.prose h2,
.prose h3,
.prose h4 {
	margin-top: 2.2rem;
}

.prose img {
	border-radius: 24px;
	box-shadow: var(--shadow-soft);
}

.prose a {
	color: var(--accent-strong);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.wp-block-media-text,
.wp-block-columns {
	gap: 24px;
}

.site-footer {
	padding: 72px 0 28px;
	border-top: 1px solid rgba(19, 37, 49, 0.08);
	background: rgba(255, 252, 248, 0.52);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 24px;
	margin-bottom: 32px;
}

.site-footer__brand h2 {
	font-size: 2rem;
}

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

.footer-list a {
	color: var(--muted);
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	padding-top: 24px;
	border-top: 1px solid rgba(19, 37, 49, 0.08);
	color: var(--muted);
	font-size: 0.92rem;
}

.wp-block-button__link,
.wp-element-button {
	border-radius: 999px;
}

.wp-block-query-pagination,
.pagination,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(19, 37, 49, 0.08);
}

.page-numbers.current {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}

[data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1100px) {
	.site-header__inner {
		grid-template-columns: auto auto 1fr;
	}

	.site-header__actions {
		justify-self: end;
	}

	.hero__grid,
	.layout-split,
	.site-footer__grid,
	.offer-grid,
	.card-grid--destinations,
	.card-grid--posts,
	.card-grid--firms {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.layout-split {
		align-items: stretch;
	}

	.detail-panel {
		position: static;
	}
}

@media (max-width: 860px) {
	.site-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		order: 3;
	}

	.site-header__inner {
		grid-template-columns: auto auto;
	}

	.site-nav {
		grid-column: 1 / -1;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.site-nav.is-open {
		max-height: 420px;
	}

	.site-nav__list {
		flex-direction: column;
		align-items: stretch;
		padding: 18px 0 6px;
	}

	.site-header__actions {
		display: none;
	}

	.hero__grid,
	.offer-grid,
	.card-grid--destinations,
	.card-grid--posts,
	.card-grid--firms,
	.site-footer__grid,
	.stat-grid,
	.layout-split {
		grid-template-columns: 1fr;
	}

	.hero__content,
	.hero__visual,
	.detail-panel {
		padding: 28px;
	}

	.section {
		padding: 68px 0;
	}

	.section-head {
		flex-direction: column;
		align-items: start;
	}
}

@media (max-width: 560px) {
	.hero {
		padding-top: 48px;
	}

	.hero__content h1,
	.page-hero h1 {
		font-size: 2.4rem;
	}

	.hero__content,
	.hero__visual,
	.card,
	.detail-panel {
		border-radius: 24px;
	}

	.card__body,
	.hero__content,
	.hero__visual {
		padding: 22px;
	}
}
