/* =====================================================================
   Vilara — main stylesheet
   ===================================================================== */

:root {
	--ink: #101417;
	--ink-soft: #1a2025;
	--ink-card: #20272d;
	--ink-line: rgba(255, 255, 255, 0.09);
	--paper: #f5f1e9;
	--paper-2: #efe9dd;
	--gold: #c6a877;
	--gold-deep: #a8895a;
	--gold-line: rgba(198, 168, 119, 0.45);
	--text-on-dark: #e9e6e0;
	--text-muted-dark: rgba(233, 230, 224, 0.62);
	--text-on-light: #2a2f34;
	--text-muted-light: rgba(42, 47, 52, 0.66);
	--serif: 'Playfair Display', 'Georgia', serif;
	--sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.55);
	--radius: 18px;
	--gutter: clamp(20px, 4vw, 32px);
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-on-dark);
	background: var(--ink);
	overflow-x: hidden;
}

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

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

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: 0;
	background: none;
	color: inherit;
}

h1, h2, h3, h4 {
	font-family: var(--serif);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 0.5em;
}

p {
	margin: 0 0 1em;
}

:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
	border-radius: 4px;
}

.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;
}

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 16px;
	background: var(--gold);
	color: var(--ink);
	z-index: 10000;
	clip: auto;
}

.container {
	width: min(1200px, 100% - var(--gutter) * 2);
	margin-inline: auto;
}

[id] {
	scroll-margin-top: 96px;
}

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

/* ---------- Typography helpers ---------- */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--gold);
}

.eyebrow::before {
	content: '';
	width: 38px;
	height: 1px;
	background: var(--gold-line);
}

.section-title {
	font-size: clamp(1.9rem, 3.6vw, 2.85rem);
	margin-bottom: 0.45em;
}

.section-head {
	max-width: 720px;
	margin: 0 auto clamp(44px, 6vw, 72px);
	text-align: center;
}

.section-head .eyebrow {
	justify-content: center;
}

.section-lead {
	font-size: 1.08rem;
	margin: 0;
}

/* ---------- Icons ---------- */
.vicon {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 30px;
	border-radius: 999px;
	font-family: var(--sans);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
	white-space: nowrap;
}

.btn .vicon {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.btn--accent {
	background: linear-gradient(135deg, var(--gold), var(--gold-deep));
	color: var(--ink);
	box-shadow: 0 12px 30px -12px rgba(198, 168, 119, 0.55);
}

.btn--accent:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 38px -12px rgba(198, 168, 119, 0.7);
}

.btn--ghost {
	border: 1px solid var(--ink-line);
	color: var(--text-on-dark);
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(6px);
}

.btn--ghost:hover {
	border-color: var(--gold-line);
	color: var(--gold);
}

.btn--outline {
	border: 1px solid rgba(42, 47, 52, 0.25);
	color: var(--text-on-light);
	background: transparent;
}

.btn--outline:hover {
	border-color: var(--gold-deep);
	color: var(--gold-deep);
}

.btn--block {
	width: 100%;
}

.btn--small {
	padding: 11px 22px;
	font-size: 0.8rem;
}

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 900;
	transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
	border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
	background: rgba(16, 20, 23, 0.88);
	backdrop-filter: blur(14px);
	border-bottom-color: var(--ink-line);
	box-shadow: 0 10px 40px -20px rgba(0, 0, 0, 0.7);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 16px 0;
}

.site-logo {
	display: flex;
	flex-direction: column;
	line-height: 1;
	z-index: 5;
}

.site-logo__word {
	font-family: var(--serif);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	color: var(--text-on-dark);
}

.site-logo__word::first-letter {
	color: var(--gold);
}

.site-logo__sub {
	margin-top: 4px;
	font-size: 0.6rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--text-muted-dark);
}

.site-nav {
	margin-left: auto;
}

.site-nav__list {
	display: flex;
	gap: clamp(14px, 2vw, 30px);
}

.site-nav__link {
	position: relative;
	font-size: 0.84rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-on-dark);
	padding: 6px 2px;
	transition: color 0.2s var(--ease);
}

.site-nav__link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s var(--ease);
}

.site-nav__link:hover {
	color: var(--gold);
}

.site-nav__link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* Language switcher */
.lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	border: 1px solid var(--ink-line);
	border-radius: 999px;
	padding: 4px;
}

.lang-switch__link {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	padding: 6px 10px;
	border-radius: 999px;
	color: var(--text-muted-dark);
	transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.lang-switch__link:hover {
	color: var(--text-on-dark);
}

.lang-switch__link.is-active {
	background: var(--gold);
	color: var(--ink);
}

/* Hamburger */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	padding: 10px;
	border-radius: 50%;
	border: 1px solid var(--ink-line);
	z-index: 5;
}

.nav-toggle__bar {
	display: block;
	width: 20px;
	height: 2px;
	margin-inline: auto;
	background: var(--text-on-dark);
	border-radius: 2px;
	transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

body.menu-open .nav-toggle {
	border-color: var(--gold-line);
}

body.menu-open .nav-toggle__bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

body.menu-open .nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

body.menu-open .nav-toggle__bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 4;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 100px var(--gutter) 40px;
	background: linear-gradient(180deg, rgba(16, 20, 23, 0.98), rgba(20, 26, 30, 0.99));
	backdrop-filter: blur(10px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

body.menu-open .mobile-menu {
	opacity: 1;
	visibility: visible;
}

.mobile-menu__nav a {
	display: block;
	font-family: var(--serif);
	font-size: clamp(1.7rem, 6vw, 2.4rem);
	padding: 10px 0;
	color: var(--text-on-dark);
	border-bottom: 1px solid var(--ink-line);
	transition: color 0.2s var(--ease), padding-left 0.3s var(--ease);
}

.mobile-menu__nav a:hover {
	color: var(--gold);
	padding-left: 10px;
}

.mobile-menu__foot {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 22px;
}

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--ink);
}

.hero__slider,
.hero__slide {
	position: absolute;
	inset: 0;
}

.hero__slide {
	opacity: 0;
	transform: scale(1.06);
	transition: opacity 1.4s var(--ease), transform 7s var(--ease);
	z-index: 1;
}

.hero__slide.is-active {
	opacity: 1;
	transform: scale(1);
	z-index: 2;
}

.hero__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	background:
		linear-gradient(180deg, rgba(16, 20, 23, 0.55) 0%, rgba(16, 20, 23, 0.35) 40%, rgba(16, 20, 23, 0.9) 100%),
		linear-gradient(90deg, rgba(16, 20, 23, 0.5) 0%, rgba(16, 20, 23, 0) 60%);
}

.hero__content {
	position: relative;
	z-index: 5;
	padding-top: 90px;
	padding-bottom: 90px;
	max-width: 780px;
}

.hero__title {
	font-size: clamp(2.5rem, 6.2vw, 4.6rem);
	margin-bottom: 0.4em;
	text-wrap: balance;
}

.hero__subtitle {
	font-size: clamp(1rem, 1.7vw, 1.18rem);
	color: var(--text-muted-dark);
	max-width: 560px;
	margin-bottom: 2.2em;
}

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hero__caption {
	position: absolute;
	left: var(--gutter);
	bottom: 46px;
	z-index: 5;
	font-size: 0.8rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--text-muted-dark);
	max-width: 40vw;
	transition: opacity 0.4s var(--ease);
}

.hero__nav {
	position: absolute;
	right: var(--gutter);
	bottom: 34px;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 18px;
}

.hero__arrow {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--ink-line);
	display: grid;
	place-items: center;
	color: var(--text-on-dark);
	transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.hero__arrow:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--ink);
}

.hero__arrow svg {
	width: 18px;
	height: 18px;
}

.hero__dots {
	display: flex;
	gap: 8px;
}

.hero__dots button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.hero__dots button.is-active {
	background: var(--gold);
	transform: scale(1.3);
}

.hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 26px;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 0.68rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--text-muted-dark);
}

.hero__scroll i {
	width: 1px;
	height: 34px;
	background: var(--gold);
	position: relative;
	overflow: hidden;
}

.hero__scroll i::after {
	content: '';
	position: absolute;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gold);
	animation: scrollline 2s var(--ease) infinite;
}

@keyframes scrollline {
	0% { top: -100%; }
	60%, 100% { top: 100%; }
}

/* =====================================================================
   About
   ===================================================================== */
.about {
	background: var(--paper);
	color: var(--text-on-light);
}

.about__grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
	gap: clamp(36px, 6vw, 80px);
	align-items: center;
}

.about__media {
	position: relative;
}

.about__figure {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	box-shadow: var(--shadow);
}

.about__figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about__facts {
	position: absolute;
	left: clamp(-24px, -2vw, 0);
	right: clamp(16px, 3vw, 40px);
	bottom: -46px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: var(--ink);
	color: var(--text-on-dark);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.about__fact {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 18px 16px;
	border-right: 1px solid var(--ink-line);
}

.about__fact:last-child {
	border-right: 0;
}

.about__fact .vicon {
	color: var(--gold);
	margin-top: 2px;
}

.about__fact span {
	display: flex;
	flex-direction: column;
}

.about__fact small {
	font-size: 0.66rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted-dark);
	margin-bottom: 4px;
}

.about__fact strong {
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.35;
}

.about__body {
	padding-top: 40px;
}

.about__text {
	color: var(--text-muted-light);
}

.about__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 40px;
	padding-top: 34px;
	border-top: 1px solid rgba(42, 47, 52, 0.14);
}

.about__stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.about__stat strong {
	font-family: var(--serif);
	font-size: 1.7rem;
	color: var(--gold-deep);
}

.about__stat span {
	font-size: 0.82rem;
	color: var(--text-muted-light);
}

/* =====================================================================
   Suites
   ===================================================================== */
.suites {
	background: var(--ink);
}

.suites__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 3vw, 32px);
}

.suite {
	display: flex;
	flex-direction: column;
	background: var(--ink-card);
	border: 1px solid var(--ink-line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.suite:hover {
	transform: translateY(-8px);
	border-color: var(--gold-line);
	box-shadow: var(--shadow);
}

.suite__media {
	margin: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.suite__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--ease);
}

.suite:hover .suite__media img {
	transform: scale(1.06);
}

.suite__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: clamp(20px, 2.6vw, 30px);
}

.suite__title {
	font-size: 1.45rem;
	margin-bottom: 0.5em;
}

.suite__text {
	font-size: 0.95rem;
	color: var(--text-muted-dark);
	flex: 1;
}

.suite__feats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 12px;
	margin: 22px 0 24px;
}

.suite__feats li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	color: var(--text-muted-dark);
}

.suite__feats .vicon {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	color: var(--gold);
}

.suite__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
}

.suite__link svg {
	width: 16px;
	height: 16px;
	transition: transform 0.3s var(--ease);
}

.suite__link:hover svg {
	transform: translateX(5px);
}

/* =====================================================================
   Amenities
   ===================================================================== */
.amenities {
	background: var(--paper);
	color: var(--text-on-light);
}

.amenities__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.amenity {
	background: var(--paper-2);
	border: 1px solid rgba(42, 47, 52, 0.08);
	border-radius: var(--radius);
	padding: 26px 20px;
	text-align: center;
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.amenity:hover {
	transform: translateY(-6px);
	background: #fff;
	box-shadow: 0 18px 40px -24px rgba(42, 47, 52, 0.4);
}

.amenity__icon {
	display: inline-grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--gold);
	margin-bottom: 16px;
}

.amenity__icon .vicon {
	width: 26px;
	height: 26px;
}

.amenity__name {
	font-family: var(--sans);
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0.4em;
}

.amenity__text {
	font-size: 0.82rem;
	color: var(--text-muted-light);
	margin: 0;
}

/* =====================================================================
   Gallery
   ===================================================================== */
.gallery {
	background: var(--ink);
}

.gallery__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.gallery__item {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	overflow: hidden;
	padding: 0;
	background: var(--ink-card);
}

.gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease), opacity 0.3s var(--ease);
}

.gallery__item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(16, 20, 23, 0.55));
	opacity: 0;
	transition: opacity 0.35s var(--ease);
}

.gallery__item:hover img {
	transform: scale(1.08);
}

.gallery__item:hover::after {
	opacity: 1;
}

/* Lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(8, 10, 12, 0.94);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.lightbox__img {
	max-width: min(88vw, 1200px);
	max-height: 82vh;
	border-radius: 8px;
	box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.9);
	transform: scale(0.96);
	transition: transform 0.35s var(--ease);
}

.lightbox.is-open .lightbox__img {
	transform: scale(1);
}

.lightbox__counter {
	position: absolute;
	top: 24px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	color: var(--text-muted-dark);
}

.lightbox__btn {
	position: absolute;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 1px solid var(--ink-line);
	display: grid;
	place-items: center;
	color: var(--text-on-dark);
	transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.lightbox__btn:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--ink);
}

.lightbox__btn svg {
	width: 20px;
	height: 20px;
}

.lightbox__close {
	top: 22px;
	right: 22px;
}

.lightbox__prev {
	left: 22px;
	top: 50%;
	transform: translateY(-50%);
}

.lightbox__next {
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
}

/* =====================================================================
   Location
   ===================================================================== */
.location {
	background: var(--paper);
	color: var(--text-on-light);
}

.location__grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: clamp(36px, 6vw, 80px);
	align-items: center;
}

.location__address {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin: 28px 0;
	padding: 20px 22px;
	background: var(--paper-2);
	border-radius: var(--radius);
}

.location__address .vicon {
	color: var(--gold-deep);
	margin-top: 2px;
}

.location__address small {
	display: block;
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-muted-light);
	margin-bottom: 4px;
}

.location__distances {
	margin: 0 0 30px;
}

.location__distance {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 11px 0;
	border-bottom: 1px dashed rgba(42, 47, 52, 0.18);
	font-size: 0.92rem;
}

.location__distance span {
	flex: 0 0 auto;
}

.location__distance i {
	flex: 1;
	height: 1px;
	background: repeating-linear-gradient(90deg, rgba(42, 47, 52, 0.25) 0 4px, transparent 4px 8px);
}

.location__distance strong {
	font-weight: 600;
	color: var(--gold-deep);
	white-space: nowrap;
}

.location__map {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	aspect-ratio: 5 / 4;
	background: var(--paper-2);
}

.location__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* =====================================================================
   Contact
   ===================================================================== */
.contact {
	background: var(--ink);
}

.contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
}

.contact__form-wrap {
	background: var(--ink-card);
	border: 1px solid var(--ink-line);
	border-radius: var(--radius);
	padding: clamp(26px, 3.4vw, 44px);
}

.contact__form-pending {
	color: var(--text-muted-dark);
	font-size: 0.95rem;
}

.contact__form-pending-hint {
	font-size: 0.82rem;
	color: var(--gold);
}

.contact__form-pending code {
	background: rgba(198, 168, 119, 0.12);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.8em;
}

.contact__aside {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.contact__card {
	background: var(--ink-card);
	border: 1px solid var(--ink-line);
	border-radius: var(--radius);
	padding: clamp(24px, 2.6vw, 34px);
}

.contact__card--book {
	background: linear-gradient(150deg, var(--ink-card), rgba(198, 168, 119, 0.08));
	border-color: var(--gold-line);
}

.contact__card-title {
	font-size: 1.25rem;
	margin-bottom: 0.8em;
}

.contact__card > p {
	color: var(--text-muted-dark);
	font-size: 0.92rem;
}

.contact__list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.contact__list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.contact__list .vicon {
	color: var(--gold);
	margin-top: 3px;
}

.contact__list small {
	display: block;
	font-size: 0.66rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-muted-dark);
	margin-bottom: 3px;
}

.contact__list a {
	color: var(--text-on-dark);
	border-bottom: 1px solid var(--gold-line);
	transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.contact__list a:hover {
	color: var(--gold);
	border-color: var(--gold);
}

/* ---------- Contact Form 7 ---------- */
.wpcf7 {
	margin: 0;
}

.wpcf7 form p {
	margin: 0 0 18px;
}

.wpcf7 form label {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-muted-dark);
	margin-bottom: 8px;
}

.wpcf7 .wpcf7-form-control-wrap {
	display: block;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	font-family: var(--sans);
	font-size: 1rem;
	color: var(--text-on-dark);
	background: rgba(16, 20, 23, 0.6);
	border: 1px solid var(--ink-line);
	border-radius: 10px;
	padding: 14px 16px;
	transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.wpcf7 textarea {
	min-height: 140px;
	resize: vertical;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
	color: rgba(233, 230, 224, 0.35);
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(198, 168, 119, 0.18);
}

.wpcf7 .wpcf7-form-control.wpcf7-submit {
	width: 100%;
	margin-top: 6px;
	padding: 16px 30px;
	background: linear-gradient(135deg, var(--gold), var(--gold-deep));
	color: var(--ink);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 0;
	border-radius: 999px;
	box-shadow: 0 12px 30px -12px rgba(198, 168, 119, 0.55);
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.wpcf7 .wpcf7-form-control.wpcf7-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 38px -12px rgba(198, 168, 119, 0.7);
}

.wpcf7 .wpcf7-not-valid {
	border-color: #d9534f !important;
}

.wpcf7 .wpcf7-not-valid-tip {
	color: #e07b74;
	font-size: 0.82rem;
	margin-top: 6px;
}

.wpcf7 .wpcf7-response-output {
	margin: 22px 0 0;
	padding: 14px 18px;
	border-radius: 10px;
	font-size: 0.9rem;
	border: 1px solid var(--gold-line);
	color: var(--text-on-dark);
}

.wpcf7 .wpcf7-mail-sent-ok {
	border-color: rgba(102, 187, 120, 0.6);
	color: #9fe0ab;
}

.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-acceptance-missing,
.wpcf7 .wpcf7-spam-blocked,
.wpcf7 .wpcf7-mail-sent-ng {
	border-color: rgba(224, 123, 116, 0.6);
	color: #eaa39d;
}

/* =====================================================================
   Contact form status / honeypot (static contact.php version)
   ===================================================================== */
.contact__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.contact__status {
	margin: 22px 0 0;
	padding: 14px 18px;
	border-radius: 10px;
	font-size: 0.92rem;
	line-height: 1.5;
	border: 1px solid transparent;
}

.contact__status[hidden] {
	display: none;
}

.contact__status.is-success {
	background: rgba(110, 200, 140, 0.1);
	border-color: rgba(110, 200, 140, 0.35);
	color: #b9e6c7;
}

.contact__status.is-error {
	background: rgba(226, 110, 100, 0.1);
	border-color: rgba(226, 110, 100, 0.4);
	color: #f0b2ab;
}

.wpcf7 .wpcf7-submit:disabled {
	opacity: 0.55;
	cursor: wait;
}

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer {
	background: #0b0e11;
	color: var(--text-on-dark);
	border-top: 1px solid var(--ink-line);
	padding: clamp(56px, 7vw, 90px) 0 36px;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1.4fr 1.2fr;
	gap: clamp(30px, 4vw, 56px);
	margin-bottom: 52px;
}

.site-logo--footer .site-logo__word {
	color: var(--text-on-dark);
}

.site-logo--footer .site-logo__sub {
	color: var(--gold);
}

.site-footer__tagline {
	color: var(--text-muted-dark);
	max-width: 300px;
	margin: 20px 0 0;
}

.site-footer__heading {
	font-family: var(--sans);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 20px;
}

.site-footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.site-footer__col ul a,
.site-footer__contacts span {
	color: var(--text-muted-dark);
	font-size: 0.92rem;
	transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
}

.site-footer__col ul a:hover {
	color: var(--gold);
	padding-left: 4px;
}

.site-footer__contacts li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.site-footer__contacts .vicon {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	color: var(--gold);
	margin-top: 3px;
}

.site-footer__contacts a:hover {
	color: var(--gold);
	padding-left: 0;
}

.lang-switch--footer {
	width: fit-content;
	margin-bottom: 22px;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px 20px;
	padding-top: 26px;
	border-top: 1px solid var(--ink-line);
	font-size: 0.8rem;
	color: var(--text-muted-dark);
	margin: 0;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__licence {
	letter-spacing: 0.06em;
}

/* =====================================================================
   Reveal animations
   ===================================================================== */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
	transition-delay: var(--reveal-delay, 0s);
}

html:not(.js) .reveal {
	opacity: 1;
	transform: none;
}

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

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1024px) {
	.amenities__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.gallery__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 900px) {
	.site-nav {
		display: none;
	}

	.nav-toggle {
		display: flex;
	}

	.site-actions__book {
		display: none;
	}

	.hero__caption {
		display: none;
	}

	.hero__nav {
		right: var(--gutter);
		bottom: 24px;
	}

	.hero__scroll {
		display: none;
	}

	.about__grid {
		grid-template-columns: 1fr;
	}

	.about__media {
		margin-bottom: 60px;
	}

	.about__facts {
		position: static;
		margin-top: 24px;
	}

	.about__body {
		padding-top: 0;
	}

	.suites__grid {
		grid-template-columns: 1fr;
	}

	.suite {
		max-width: 560px;
	}

	.contact__grid,
	.location__grid {
		grid-template-columns: 1fr;
	}

	.location__map {
		aspect-ratio: 4 / 3;
		order: -1;
	}
}

@media (max-width: 640px) {
	.about__stats {
		grid-template-columns: 1fr 1fr;
	}

	.about__facts {
		grid-template-columns: 1fr;
	}

	.about__fact {
		border-right: 0;
		border-bottom: 1px solid var(--ink-line);
	}

	.about__fact:last-child {
		border-bottom: 0;
	}

	.amenities__grid {
		grid-template-columns: 1fr 1fr;
	}

	.gallery__grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.hero__nav {
		display: none;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.site-header__inner {
		gap: 14px;
	}

	.site-logo__sub {
		display: none;
	}

	.lightbox__prev {
		left: 10px;
	}

	.lightbox__next {
		right: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}

