/* ==========================================================================
   Colonial Residence Kandy — main stylesheet
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
	--ink: #14120f;
	--ink-2: #1c1a16;
	--ink-3: #26231d;
	--gold: #c6a15b;
	--gold-light: #dcc08a;
	--gold-dark: #9c7a3a;
	--paper: #f5f0e6;
	--paper-2: #ece4d3;
	--white: #fffdf8;
	--text: #2a2622;
	--muted: #6f675b;
	--muted-light: rgba(245, 240, 230, 0.68);
	--line: rgba(198, 161, 91, 0.32);
	--line-soft: rgba(42, 38, 34, 0.1);

	--display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
	--serif: "EB Garamond", Georgia, "Times New Roman", serif;
	--sans: "Jost", "Helvetica Neue", Arial, sans-serif;

	--container: 1240px;
	--gutter: clamp(20px, 4vw, 40px);
	--section: clamp(72px, 9vw, 120px);
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--header-h: 92px;
}

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

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

body {
	margin: 0;
	font-family: var(--serif);
	font-size: 18px;
	line-height: 1.7;
	color: var(--text);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img, svg, iframe { max-width: 100%; }
img { display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--display); font-weight: 400; line-height: 1.15; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
figure { margin: 0; }
::selection { background: var(--gold); color: var(--ink); }

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

.icon { width: 1.15em; height: 1.15em; flex-shrink: 0; vertical-align: middle; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
	position: absolute; left: 16px; top: -60px; z-index: 2000; padding: 10px 18px;
	background: var(--gold); color: var(--ink); font-family: var(--sans); font-size: 14px;
}
.skip-link:focus { top: 16px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 900px; }
.center { text-align: center; }
.section { padding-block: var(--section); position: relative; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--paper { background: var(--paper); }
.section--dark + .section--dark { padding-top: 0; }

/* ---------- Type components ---------- */
.eyebrow {
	display: flex; align-items: center; gap: 16px;
	margin: 0 0 20px;
	font-family: var(--sans); font-size: 11.5px; font-weight: 500;
	letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-dark);
}
.section--dark .eyebrow, .eyebrow--light, .split--dark .eyebrow, .split__content--dark .eyebrow { color: var(--gold); }
.eyebrow::before { content: ""; width: 44px; height: 1px; background: currentColor; opacity: 0.7; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 44px; height: 1px; background: currentColor; opacity: 0.7; }

.section-title {
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.12;
	color: var(--ink);
	margin-bottom: 24px;
	letter-spacing: -0.005em;
}
.section-title--light, .section--dark .section-title { color: var(--paper); }

.section-lead {
	text-align: center; font-family: var(--display); font-style: italic;
	font-size: clamp(20px, 2.2vw, 26px); color: var(--muted); margin: -18px 0 48px;
}
.section--dark .section-lead { color: var(--muted-light); }

.heading-rule {
	display: flex; align-items: center; gap: 28px; margin-bottom: 56px;
}
.heading-rule::before, .heading-rule::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.heading-rule h2 {
	font-family: var(--display); font-size: clamp(22px, 2.4vw, 28px); font-weight: 500;
	letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); text-align: center;
}
.heading-rule--dark h2 { color: var(--ink); }
.heading-rule--dark::before, .heading-rule--dark::after { background: rgba(156, 122, 58, 0.4); }

.ornament { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); }
.ornament span { width: 56px; height: 1px; background: currentColor; opacity: 0.6; }
.ornament i { width: 7px; height: 7px; background: currentColor; transform: rotate(45deg); }

.prose { color: var(--muted); }
.section--dark .prose, .split__content--dark .prose { color: var(--muted-light); }
.prose--center { text-align: center; }
.prose--lg { font-size: 19px; }
.prose .lead, .lead { font-size: 1.18em; color: var(--text); }
.prose h2, .prose h3 { color: var(--ink); margin: 1.6em 0 0.6em; }
.prose h2 { font-size: 34px; }
.prose h3 { font-size: 26px; }
.prose a { color: var(--gold-dark); border-bottom: 1px solid var(--line); }
.prose ul { list-style: disc; padding-left: 1.3em; margin-bottom: 1.1em; }
.prose ol { list-style: decimal; padding-left: 1.3em; margin-bottom: 1.1em; }
.prose blockquote { margin: 1.6em 0; padding-left: 24px; border-left: 2px solid var(--gold); font-family: var(--display); font-style: italic; font-size: 1.3em; color: var(--text); }
.prose img { margin: 1.4em 0; }
.prose > *:last-child { margin-bottom: 0; }

.sub-title { font-size: 28px; color: var(--ink); margin: 48px 0 20px; }
.small-note { font-family: var(--sans); font-size: 13px; color: var(--muted); letter-spacing: 0.02em; margin-top: 28px; }
.signature { font-family: var(--display); font-style: italic; font-size: 24px; color: var(--gold-dark); margin-top: 28px; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 12px;
	padding: 16px 30px; min-height: 50px;
	font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
	border: 1px solid transparent; cursor: pointer; white-space: nowrap;
	transition: background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn .icon { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.btn:hover .icon { transform: translateX(4px); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn--ghost { border-color: var(--gold); color: var(--paper); background: rgba(20, 18, 15, 0.15); }
.btn--ghost:hover { background: var(--gold); color: var(--ink); }
.btn--outline-dark { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline-dark:hover { background: var(--ink); color: var(--paper); }
.btn--sm { padding: 12px 22px; min-height: 44px; font-size: 11px; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; margin-top: 36px; }
.section-actions { text-align: center; margin-top: 56px; }

.link-arrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.link-arrow .icon { width: 15px; transition: transform 0.35s var(--ease); }
.link-arrow:hover .icon { transform: translateX(5px); }
.link-arrow--dark { color: var(--gold-dark); }

/* ---------- Header ---------- */
.site-header {
	position: fixed; inset: 0 0 auto; z-index: 1000;
	transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
	background: linear-gradient(to bottom, rgba(12, 11, 9, 0.7), rgba(12, 11, 9, 0));
}
.admin-bar .site-header { top: 32px; }
.site-header.is-scrolled {
	background: rgba(20, 18, 15, 0.97);
	box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(8px);
}
.site-header__inner {
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	max-width: 1480px; margin-inline: auto; padding: 18px var(--gutter);
	transition: padding 0.4s var(--ease);
}
.site-header.is-scrolled .site-header__inner { padding-block: 10px; }

.brand { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; color: var(--gold); }
.brand__mark {
	font-family: var(--display); font-weight: 400; font-size: 44px; letter-spacing: 0.02em;
	background: linear-gradient(180deg, #ecd39c 0%, var(--gold) 45%, var(--gold-dark) 100%);
	-webkit-background-clip: text; background-clip: text; color: transparent;
	transition: font-size 0.4s var(--ease);
}
.brand__first { font-size: 1.3em; font-style: italic; margin-right: -0.14em; }
.brand__rule { width: 100%; height: 1px; margin: 3px 0 5px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.brand__tag { font-family: var(--sans); font-size: 8.5px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-light); white-space: nowrap; }
.site-header.is-scrolled .brand__mark { font-size: 36px; }
.custom-logo-link img { max-height: 70px; width: auto; }

.primary-nav__menu { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 36px); }
.primary-nav__menu > li { position: relative; }
.primary-nav__menu a {
	position: relative; display: block; padding: 8px 0;
	font-family: var(--sans); font-size: 11.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--paper);
}
.primary-nav__menu > li > a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold);
	transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.primary-nav__menu a:hover, .primary-nav__menu .current-menu-item > a, .primary-nav__menu .current_page_item > a { color: var(--gold); }
.primary-nav__menu > li:hover > a::after, .primary-nav__menu .current-menu-item > a::after, .primary-nav__menu .current_page_item > a::after { transform: scaleX(1); }
.primary-nav__menu .sub-menu {
	position: absolute; top: 100%; left: -20px; min-width: 220px; padding: 12px 0;
	background: var(--ink-2); border: 1px solid var(--line);
	opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.3s var(--ease);
}
.primary-nav__menu li:hover > .sub-menu, .primary-nav__menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.primary-nav__menu .sub-menu a { padding: 8px 20px; font-size: 11px; }

.site-header__actions { display: flex; align-items: center; gap: 22px; }
.header-phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 13.5px; letter-spacing: 0.06em; color: var(--paper); white-space: nowrap; }
.header-phone .icon { color: var(--gold); }
.header-phone:hover { color: var(--gold); }

.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; background: none; border: 1px solid var(--line); cursor: pointer; color: var(--gold); }
.menu-toggle__bars { display: grid; gap: 5px; width: 20px; margin: auto; }
.menu-toggle__bars i { display: block; height: 1px; background: currentColor; transition: transform 0.35s var(--ease), opacity 0.35s; }
.menu-open .menu-toggle__bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle__bars i:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle__bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
	position: fixed; inset: 0; z-index: 999; background: rgba(20, 18, 15, 0.98);
	display: flex; align-items: center; justify-content: center; padding: 110px 24px 40px;
	opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
	overflow-y: auto;
}
.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.menu-open { overflow: hidden; }
.mobile-menu__inner { text-align: center; width: 100%; max-width: 420px; }
.mobile-menu__inner > .brand { display: none; }
.mobile-menu__list li { border-bottom: 1px solid rgba(198, 161, 91, 0.15); }
.mobile-menu__list a { display: block; padding: 14px 0; font-family: var(--display); font-size: 28px; color: var(--paper); }
.mobile-menu__list .current-menu-item a, .mobile-menu__list a:hover { color: var(--gold); }
.mobile-menu__foot { display: grid; gap: 22px; justify-items: center; margin-top: 36px; }

/* ---------- Home hero ---------- */
.hero {
	position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center;
	color: var(--paper); overflow: hidden; background: var(--ink);
}
.hero__bg {
	position: absolute; inset: 0; background-size: cover; background-position: center 40%;
	transform: scale(1.06); animation: heroZoom 14s var(--ease) forwards;
}
.hero__bg::after {
	content: ""; position: absolute; inset: 0;
	background:
		linear-gradient(90deg, rgba(12, 11, 9, 0.88) 0%, rgba(12, 11, 9, 0.55) 38%, rgba(12, 11, 9, 0.05) 70%),
		linear-gradient(0deg, rgba(12, 11, 9, 0.55) 0%, transparent 30%);
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__inner { position: relative; z-index: 2; padding-top: var(--header-h); }
.hero__content { max-width: 560px; }
.hero__brand { display: inline-flex; flex-direction: column; align-items: center; margin-bottom: 34px; animation: fadeUp 1.2s var(--ease) both; }
.hero__mono {
	font-family: var(--display); font-weight: 300; font-size: clamp(96px, 13vw, 168px); line-height: 0.85; letter-spacing: 0.01em;
	background: linear-gradient(180deg, #f1dcab 0%, var(--gold) 50%, #8f6d31 100%);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__mono .brand__first { font-size: 1.28em; margin-right: -0.16em; }
.hero__tag {
	display: flex; align-items: center; gap: 14px; margin: 18px 0 14px;
	font-family: var(--display); font-size: clamp(14px, 1.6vw, 19px); letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-light);
}
.hero__tag span { width: 30px; height: 1px; background: var(--gold); opacity: 0.7; }
.hero__title {
	font-family: var(--display); font-style: italic; font-weight: 400;
	font-size: clamp(32px, 4vw, 48px); line-height: 1.15; margin-bottom: 40px; max-width: 480px;
	animation: fadeUp 1.2s 0.2s var(--ease) both;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; animation: fadeUp 1.2s 0.4s var(--ease) both; }
.hero__scroll {
	position: absolute; left: 50%; bottom: 34px; z-index: 2; transform: translateX(-50%);
	width: 24px; height: 40px; border: 1px solid rgba(245, 240, 230, 0.6); border-radius: 14px;
}
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 2px; height: 7px; margin-left: -1px; background: var(--gold); border-radius: 2px; animation: wheel 2s infinite; }
@keyframes wheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(14px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ---------- Welcome ---------- */
.welcome__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.welcome__tags {
	display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin: 28px 0 0;
	font-family: var(--display); font-style: italic; font-size: 22px; color: var(--gold-dark);
}
.welcome__tags i { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }
.stats { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 40px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line-soft); }
.stats strong { display: block; font-family: var(--display); font-weight: 400; font-size: 46px; line-height: 1; color: var(--ink); }
.stats sup { font-size: 0.5em; color: var(--gold-dark); }
.stats span { font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.framed { position: relative; padding: 14px; border: 1px solid var(--gold); background: var(--white); box-shadow: 0 30px 60px -30px rgba(20, 18, 15, 0.45); }
.framed::before { content: ""; position: absolute; inset: -9px; border: 1px solid var(--line); pointer-events: none; }
.framed img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------- Room cards ---------- */
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.room-card {
	display: flex; flex-direction: column; background: var(--ink-2);
	border: 1px solid var(--line); transition: border-color 0.4s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.room-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.6); }
.room-card__media { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 10; margin: 8px 8px 0; }
.room-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.room-card:hover .room-card__media img { transform: scale(1.06); }
.room-card__price {
	position: absolute; right: 12px; bottom: 12px; padding: 6px 12px;
	background: rgba(20, 18, 15, 0.85); border: 1px solid var(--line);
	font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-light);
}
.room-card__price strong { color: var(--gold-light); font-weight: 500; font-size: 13px; letter-spacing: 0.04em; }
.room-card__body { display: flex; flex-direction: column; gap: 12px; padding: 22px 22px 24px; flex: 1; }
.room-card__title { font-size: 24px; color: var(--paper); }
.room-card__title a:hover { color: var(--gold-light); }
.room-card__meta { display: flex; flex-wrap: wrap; gap: 18px; margin: 0; font-family: var(--sans); font-size: 12.5px; color: var(--muted-light); }
.room-card__meta span { display: inline-flex; align-items: center; gap: 7px; }
.room-card__meta .icon { color: var(--gold); width: 15px; height: 15px; }
.room-card .link-arrow { margin-top: auto; }

/* ---------- Facilities strip ---------- */
.facilities-strip { background: var(--paper-2); padding-block: 64px 70px; border-bottom: 1px solid var(--line-soft); }
.facilities-strip .eyebrow { color: var(--ink); margin-bottom: 40px; }
.facilities-strip__list { display: grid; grid-template-columns: repeat(5, 1fr); }
.facilities-strip__item { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 6px 16px; text-align: center; position: relative; }
.facilities-strip__item + .facilities-strip__item::before { content: ""; position: absolute; left: 0; top: 10%; bottom: 10%; width: 1px; background: rgba(156, 122, 58, 0.35); }
.facilities-strip__icon { color: var(--gold-dark); transition: transform 0.4s var(--ease); }
.facilities-strip__icon .icon { width: 40px; height: 40px; stroke-width: 1.1; }
.facilities-strip__item:hover .facilities-strip__icon { transform: translateY(-4px); }
.facilities-strip__label { font-family: var(--serif); font-size: 17px; line-height: 1.35; color: var(--text); }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; background: var(--ink); }
.split__media { position: relative; overflow: hidden; min-height: 380px; }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.split:hover .split__media img { transform: scale(1.04); }
.split__content { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(48px, 7vw, 110px) clamp(28px, 7vw, 110px); background: var(--ink-2); color: var(--muted-light); }
.split__content p { max-width: 520px; }
.split__content .btn { margin-top: 16px; }
.split__content .section-title { color: var(--paper); }
.split__content--paper { background: var(--paper); color: var(--muted); }
.split__content--paper .section-title { color: var(--ink); }
.split__content--dark { background: var(--ink-2); }
.split--flip .split__media { order: 2; }

/* ---------- Attractions ---------- */
.attractions { background: var(--paper); }
.attraction-grid { display: grid; grid-template-columns: repeat(20, 1fr); gap: 22px 20px; }
.attraction-grid > .attraction { grid-column: span 4; }
.attraction-grid > .attraction:nth-child(n+6) { grid-column: span 5; }
.attraction__media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; box-shadow: 0 12px 24px -16px rgba(20, 18, 15, 0.5); }
.attraction__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.attraction:hover .attraction__media img { transform: scale(1.07); }
.attraction figcaption { padding-top: 12px; }
.attraction__title { display: block; font-family: var(--display); font-style: italic; font-size: 19px; line-height: 1.3; color: var(--text); }
.attraction__title small { font-size: 0.85em; color: var(--muted); }
.attraction:hover .attraction__title { color: var(--gold-dark); }

.attraction-grid--detailed { grid-template-columns: repeat(3, 1fr); gap: 36px 28px; }
.attraction--detailed .attraction__title { font-style: normal; font-size: 24px; margin-bottom: 6px; }
.attraction__text { display: block; font-size: 16px; color: var(--muted); line-height: 1.6; }
.attraction__distance {
	position: absolute; left: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px;
	background: rgba(20, 18, 15, 0.82); color: var(--paper); font-family: var(--sans); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}
.attraction__distance .icon { color: var(--gold); width: 15px; }

/* ---------- Testimonials ---------- */
.testimonials { text-align: center; }
.testimonials__icon .icon { width: 44px; height: 44px; color: var(--gold); margin: 0 auto 18px; }
.testimonials__track { display: grid; }
.testimonial { grid-area: 1 / 1; margin: 0; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), visibility 0.8s; }
.testimonial.is-active { opacity: 1; visibility: visible; transform: none; }
.testimonial p { font-family: var(--display); font-style: italic; font-size: clamp(22px, 2.6vw, 32px); line-height: 1.45; color: var(--paper); margin-bottom: 26px; }
.testimonial cite { font-style: normal; font-family: var(--sans); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.testimonial cite span { display: block; margin-top: 6px; color: var(--muted-light); letter-spacing: 0.14em; font-size: 11px; }
.testimonials__dots { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.testimonials__dots button { width: 9px; height: 9px; padding: 0; border: 1px solid var(--gold); background: transparent; transform: rotate(45deg); cursor: pointer; transition: background 0.3s; }
.testimonials__dots button[aria-current="true"] { background: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: var(--paper); padding-block: clamp(64px, 8vw, 96px); border-top: 1px solid var(--line); }
.cta-band__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.22; filter: grayscale(0.3); }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(20, 18, 15, 0.55), rgba(20, 18, 15, 0.95) 75%); }
.cta-band__inner { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px 40px; }
.cta-band__inner > .btn { grid-column: 1 / -1; justify-self: center; }
.cta-band__rule { height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.cta-band__rule:nth-of-type(2) { background: linear-gradient(90deg, var(--gold), transparent); }
.cta-band__text { text-align: center; }
.cta-band__title { font-style: italic; font-size: clamp(30px, 3.6vw, 44px); color: var(--gold-light); margin-bottom: 14px; }
.cta-band__phone { display: inline-flex; align-items: center; gap: 12px; font-family: var(--sans); font-size: clamp(20px, 2.2vw, 26px); font-weight: 300; letter-spacing: 0.06em; }
.cta-band__phone .icon { color: var(--gold); }
.cta-band__phone:hover { color: var(--gold-light); }
.cta-band__note { margin: 10px 0 0; font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-light); }

/* ---------- Footer ---------- */
.site-footer { background: #0f0e0b; color: var(--muted-light); font-size: 16px; padding-top: 70px; }
.site-footer__top { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-bottom: 44px; border-bottom: 1px solid rgba(198, 161, 91, 0.16); }
.footer-nav__menu { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 30px; }
.footer-nav__menu a { font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper); }
.footer-nav__menu a:hover { color: var(--gold); }
.footer-phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 14px; color: var(--paper); white-space: nowrap; }
.footer-phone .icon { color: var(--gold); }
.site-footer__cols { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 48px; padding-block: 48px; border-bottom: 1px solid rgba(198, 161, 91, 0.16); }
.footer-col__title { font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col p { max-width: 360px; }
.footer-list li { display: flex; gap: 12px; margin-bottom: 12px; line-height: 1.5; }
.footer-list .icon { color: var(--gold); margin-top: 3px; width: 17px; }
.footer-list a:hover { color: var(--gold-light); }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); color: var(--gold); transition: all 0.3s var(--ease); }
.social a:hover { background: var(--gold); color: var(--ink); }
.site-footer__bottom { display: flex; align-items: center; justify-content: center; gap: 28px; padding-block: 26px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.08em; text-align: center; }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom .ornament span { width: 36px; }

.wa-float {
	position: fixed; right: 22px; bottom: 22px; z-index: 900; display: grid; place-items: center;
	width: 54px; height: 54px; border-radius: 50%; background: var(--gold); color: var(--ink);
	box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.45); transition: transform 0.3s var(--ease), background 0.3s;
}
.wa-float .icon { width: 26px; height: 26px; stroke-width: 1.5; }
.wa-float:hover { transform: translateY(-3px); background: var(--gold-light); }

/* ---------- Page hero ---------- */
.page-hero { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--ink); color: var(--paper); text-align: center; padding: calc(var(--header-h) + 60px) 0 80px; min-height: 480px; }
.page-hero--lg { min-height: 78vh; }
.page-hero--md { min-height: 62vh; }
.page-hero--sm { min-height: 420px; }
.page-hero--full { min-height: 100vh; }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); animation: heroZoom 12s var(--ease) forwards; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12, 11, 9, 0.65) 0%, rgba(12, 11, 9, 0.45) 45%, rgba(12, 11, 9, 0.85) 100%); }
.page-hero__inner { position: relative; z-index: 2; max-width: 920px; }
.page-hero__title { font-size: clamp(40px, 6vw, 76px); line-height: 1.05; color: var(--paper); margin-bottom: 18px; animation: fadeUp 1s var(--ease) both; }
.page-hero__subtitle { font-family: var(--display); font-style: italic; font-size: clamp(19px, 2.2vw, 25px); color: var(--muted-light); margin: 0 auto 26px; max-width: 680px; animation: fadeUp 1s 0.15s var(--ease) both; }
.page-hero .eyebrow { animation: fadeUp 1s var(--ease) both; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; padding-block: 22px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line-soft); }
.breadcrumbs a:hover { color: var(--gold-dark); }
.breadcrumbs [aria-current] { color: var(--ink); }

/* ---------- Rooms page ---------- */
.intro { padding-bottom: 20px; }
.room-list .container { display: grid; gap: clamp(60px, 8vw, 110px); }
.room-row { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.room-row--flip .room-row__media { order: 2; }
.room-row__media { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 3; }
.room-row__media::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(245, 240, 230, 0.45); pointer-events: none; }
.room-row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.room-row:hover .room-row__media img { transform: scale(1.04); }
.room-row__num { font-family: var(--display); font-size: 64px; line-height: 1; color: var(--gold); opacity: 0.5; margin-bottom: 4px; }
.room-row__title { font-size: clamp(30px, 3.2vw, 42px); color: var(--ink); margin-bottom: 8px; }
.room-row__title a:hover { color: var(--gold-dark); }
.room-row__tagline { font-family: var(--display); font-style: italic; font-size: 21px; color: var(--gold-dark); }
.room-row__text { color: var(--muted); }
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; padding: 20px 0; margin: 8px 0 24px; border-block: 1px solid var(--line-soft); font-family: var(--sans); font-size: 14px; color: var(--text); }
.spec-list li { display: flex; align-items: center; gap: 10px; }
.spec-list .icon { color: var(--gold-dark); }
.room-row__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.price { margin: 0; font-family: var(--display); font-size: 34px; color: var(--ink); line-height: 1; }
.price span, .price small { font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.amenity { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 36px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 0.4s var(--ease); }
.amenity:hover { background: var(--ink-2); }
.amenity__icon .icon { width: 36px; height: 36px; color: var(--gold); stroke-width: 1.1; margin-bottom: 8px; }
.amenity strong { font-family: var(--display); font-size: 22px; font-weight: 500; color: var(--paper); }
.amenity span:last-child { font-size: 15px; color: var(--muted-light); line-height: 1.5; }

.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.info-card { padding: 40px 32px; background: var(--white); border: 1px solid var(--line-soft); text-align: center; transition: border-color 0.3s, transform 0.4s var(--ease); }
.info-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.info-card > .icon { width: 34px; height: 34px; color: var(--gold-dark); margin: 0 auto 16px; display: block; }
.info-card h3 { font-size: 26px; color: var(--ink); margin-bottom: 10px; }
.info-card p { color: var(--muted); margin: 0; font-size: 16px; }

/* ---------- Single room ---------- */
.room-detail__grid { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: clamp(36px, 5vw, 64px); align-items: start; }
.gallery__main { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink); }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.35s; }
.gallery__main img.is-fading { opacity: 0.2; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 10px; margin-top: 10px; }
.gallery__thumb { padding: 0; border: 1px solid transparent; background: none; cursor: pointer; aspect-ratio: 4 / 3; overflow: hidden; opacity: 0.6; transition: opacity 0.3s, border-color 0.3s; }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active, .gallery__thumb:hover { opacity: 1; border-color: var(--gold); }
.spec-bar { display: grid; grid-template-columns: repeat(4, 1fr); margin: 32px 0; background: var(--white); border: 1px solid var(--line-soft); }
.spec-bar li { display: flex; align-items: center; gap: 12px; padding: 18px; font-family: var(--sans); font-size: 14px; }
.spec-bar li + li { border-left: 1px solid var(--line-soft); }
.spec-bar .icon { width: 26px; height: 26px; color: var(--gold-dark); }
.spec-bar small { display: block; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.check-list { display: grid; gap: 12px; margin: 18px 0 8px; font-size: 17px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; }
.check-list .icon { color: var(--gold); margin-top: 4px; }
.check-list--cols { grid-template-columns: 1fr 1fr; gap: 12px 28px; }

.room-detail__aside { position: sticky; top: 110px; }
.booking-card { background: var(--ink); color: var(--muted-light); padding: 34px 30px; border: 1px solid var(--line); box-shadow: 0 30px 60px -30px rgba(20, 18, 15, 0.6); }
.booking-card__price { font-family: var(--display); font-size: 40px; color: var(--paper); line-height: 1; margin-bottom: 14px; }
.booking-card__price span, .booking-card__price small { font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.booking-card__lead { font-size: 16px; line-height: 1.55; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.booking-card__contact { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); font-family: var(--sans); font-size: 13px; }
.booking-card__contact a { display: inline-flex; align-items: center; gap: 8px; color: var(--paper); }
.booking-card__contact .icon { color: var(--gold); }
.booking-card__contact a:hover { color: var(--gold); }

/* ---------- Forms ---------- */
.enquiry-form { margin-top: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field__label { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.enquiry-form input:not([type="radio"]),
.enquiry-form select,
.enquiry-form textarea,
.search-form input {
	width: 100%; min-height: 50px; padding: 12px 16px;
	font-family: var(--sans); font-size: 15px; color: var(--text);
	background: var(--white); border: 1px solid rgba(42, 38, 34, 0.18); border-radius: 0;
	transition: border-color 0.3s, box-shadow 0.3s; appearance: none; -webkit-appearance: none;
}
.enquiry-form select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239c7a3a' stroke-width='1.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px;
}
.enquiry-form textarea { resize: vertical; min-height: 110px; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus, .search-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.18); }
.enquiry-form .is-invalid { border-color: #b4553b !important; }

.segmented { display: flex; flex-wrap: wrap; gap: 8px; }
.segmented label { cursor: pointer; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented span { display: inline-block; padding: 11px 18px; border: 1px solid rgba(42, 38, 34, 0.18); background: var(--white); font-family: var(--sans); font-size: 13px; transition: all 0.3s var(--ease); }
.segmented input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--gold-light); }
.segmented input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; margin-top: 26px; }
.form-note { display: flex; align-items: center; gap: 8px; margin: 0; font-family: var(--sans); font-size: 12.5px; color: var(--muted); }
.form-note .icon { color: var(--gold-dark); }
.form-notice { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; margin-bottom: 24px; font-family: var(--sans); font-size: 14.5px; line-height: 1.55; }
.form-notice strong { display: block; margin-bottom: 2px; }
.form-notice--success { background: #eef3e6; border: 1px solid #b7c99a; color: #3c4f25; }
.form-notice--success .icon { color: #5e7a34; width: 22px; height: 22px; }
.form-notice--error { background: #f8ebe5; border: 1px solid #e1b9a8; color: #7a3420; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.enquiry-form--compact { margin-top: 22px; }
.enquiry-form--compact .form-grid { gap: 14px 12px; }
.enquiry-form--compact input:not([type="radio"]), .enquiry-form--compact select, .enquiry-form--compact textarea { background: var(--ink-2); border-color: rgba(198, 161, 91, 0.28); color: var(--paper); color-scheme: dark; }
.enquiry-form--compact .field__label { color: var(--muted-light); }
.enquiry-form--compact .form-foot { flex-direction: column; align-items: stretch; }
.enquiry-form--compact .form-foot .btn { width: 100%; }
.enquiry-form--compact .form-note { color: var(--muted-light); font-size: 12px; }

.search-form { display: flex; gap: 10px; max-width: 480px; margin: 20px auto 0; }

/* ---------- Heritage ---------- */
.quote-band { background: var(--ink); color: var(--paper); text-align: center; padding-block: clamp(64px, 8vw, 100px); }
.quote-band > .container > .icon { width: 42px; height: 42px; color: var(--gold); margin: 0 auto 20px; display: block; }
.quote-band blockquote { margin: 0 auto 28px; font-family: var(--display); font-style: italic; font-size: clamp(24px, 3vw, 36px); line-height: 1.4; max-width: 820px; }

.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding-top: 38px; }
.timeline::before { content: ""; position: absolute; top: 8px; left: 0; right: 0; height: 1px; background: rgba(156, 122, 58, 0.45); }
.timeline__item { position: relative; }
.timeline__item::before { content: ""; position: absolute; top: -35px; left: 0; width: 11px; height: 11px; background: var(--paper); border: 1px solid var(--gold-dark); transform: rotate(45deg); }
.timeline__year { display: block; font-family: var(--display); font-style: italic; font-size: 30px; color: var(--gold-dark); margin-bottom: 6px; }
.timeline__item h3 { font-size: 24px; color: var(--ink); margin-bottom: 10px; }
.timeline__item p { color: var(--muted); font-size: 16.5px; margin: 0; }

.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-cards--4 { grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card { background: var(--ink-2); border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform 0.5s var(--ease), border-color 0.4s; }
.feature-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.feature-card__media { overflow: hidden; aspect-ratio: 4 / 3; }
.feature-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.feature-card:hover .feature-card__media img { transform: scale(1.06); }
.feature-card__body { padding: 26px 24px 30px; color: var(--muted-light); font-size: 16px; line-height: 1.6; }
.feature-card__body h3 { font-size: 25px; color: var(--paper); margin-bottom: 8px; }
.feature-card__body p:last-child { margin: 0; }
.feature-card__icon .icon { width: 30px; height: 30px; color: var(--gold); margin-bottom: 12px; }
.feature-card__meta { font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 12px; }
.mosaic figure { overflow: hidden; }
.mosaic figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic figure:nth-child(4) { grid-row: span 2; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.mosaic figure:hover img { transform: scale(1.06); }

/* ---------- Dining ---------- */
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; padding: 44px; background: var(--white); border: 1px solid var(--line); outline: 1px solid var(--line); outline-offset: -10px; }
.menu-col__title { font-size: 26px; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; color: var(--gold-dark); margin-bottom: 22px; }
.menu-col li { padding: 14px 0; border-bottom: 1px dashed rgba(156, 122, 58, 0.3); }
.menu-col li:last-child { border-bottom: 0; }
.menu-col strong { display: block; font-family: var(--display); font-size: 22px; font-weight: 500; color: var(--ink); }
.menu-col span { font-size: 16px; color: var(--muted); font-style: italic; }

/* ---------- Location ---------- */
.location__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.contact-list { display: grid; gap: 18px; margin: 28px 0 32px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .icon { width: 22px; height: 22px; color: var(--gold-dark); margin-top: 4px; }
.contact-list small { display: block; font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact-list a:hover { color: var(--gold-dark); }
.contact-list--light { color: var(--paper); }
.contact-list--light .icon { color: var(--gold); }
.contact-list--light small { color: var(--muted-light); }
.contact-list--light a:hover { color: var(--gold-light); }

.map-frame { position: relative; aspect-ratio: 4 / 3.2; border: 1px solid var(--gold); padding: 10px; background: var(--white); }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: sepia(0.25) saturate(0.85); }
.map-band { line-height: 0; border-top: 1px solid var(--line); }
.map-band iframe { width: 100%; height: 440px; border: 0; filter: grayscale(0.6) sepia(0.2); }

.travel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.travel-card { padding: 40px 32px; border: 1px solid var(--line); background: var(--ink-2); color: var(--muted-light); font-size: 16.5px; }
.travel-card__icon .icon { width: 38px; height: 38px; color: var(--gold); stroke-width: 1.1; }
.travel-card h3 { font-size: 27px; color: var(--paper); margin: 18px 0 4px; }
.travel-card__time { font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.travel-card p:last-child { margin: 0; }

.daytrip-list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 64px; max-width: 980px; margin-inline: auto; }
.daytrip { display: flex; align-items: baseline; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(198, 161, 91, 0.16); }
.daytrip span { font-family: var(--display); font-size: 22px; color: var(--paper); }
.daytrip i { flex: 1; border-bottom: 1px dotted rgba(198, 161, 91, 0.45); transform: translateY(-5px); }
.daytrip em { font-family: var(--sans); font-style: normal; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }

/* ---------- Contact ---------- */
.contact { scroll-margin-top: 80px; }
.contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact__form-card { background: var(--white); padding: clamp(28px, 4vw, 52px); border: 1px solid var(--line-soft); box-shadow: 0 30px 60px -40px rgba(20, 18, 15, 0.35); }
.contact__aside { display: grid; gap: 24px; position: sticky; top: 110px; }
.contact-card { background: var(--ink); color: var(--paper); padding: 36px 32px; border: 1px solid var(--line); }
.contact-card h3 { font-size: 30px; color: var(--gold-light); }
.contact-card .contact-list { margin: 22px 0 26px; font-size: 16.5px; }
.contact-card__times { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); padding-top: 20px; }
.contact-card__times div + div { border-left: 1px solid var(--line); padding-left: 20px; }
.contact-card__times small { display: block; font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-light); }
.contact-card__times strong { font-family: var(--display); font-weight: 400; font-size: 26px; color: var(--paper); }
.perks { padding: 30px 32px; border: 1px solid var(--line); background: var(--paper-2); }
.perks h4 { font-size: 24px; color: var(--ink); }
.perks .check-list { font-size: 16px; }

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; cursor: pointer; list-style: none; font-family: var(--display); font-size: 24px; color: var(--paper); transition: color 0.3s; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-light); }
.faq__icon .icon { color: var(--gold); transition: transform 0.35s var(--ease); }
.faq__item[open] .faq__icon .icon { transform: rotate(45deg); }
.faq__item p { color: var(--muted-light); margin: -6px 0 24px; max-width: 720px; }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.post-card { background: var(--white); border: 1px solid var(--line-soft); transition: transform 0.4s var(--ease), border-color 0.3s; }
.post-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.post-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 26px; }
.post-card__meta { font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px; }
.post-card__title { font-size: 26px; color: var(--ink); margin-bottom: 10px; }
.post-card__body p { color: var(--muted); font-size: 16px; }
.pagination { margin-top: 56px; }
.pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.pagination .page-numbers { display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px; border: 1px solid var(--line); font-family: var(--sans); font-size: 14px; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.post-nav .nav-links { display: flex; justify-content: space-between; gap: 24px; margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line-soft); font-family: var(--display); font-size: 22px; }
.post-nav small { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); }
.post-nav .nav-next { text-align: right; margin-left: auto; }
.entry .wp-block-image, .entry .alignwide { margin-block: 1.6em; }

.comments-area { margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--line-soft); }
.comments-area .comment-list { display: grid; gap: 24px; margin-bottom: 40px; }
.comments-area .comment-body { padding: 22px; background: var(--white); border: 1px solid var(--line-soft); }
.comments-area .children { margin: 16px 0 0 28px; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; padding: 12px 14px; border: 1px solid rgba(42, 38, 34, 0.2); font: inherit; background: var(--white); }
.comment-form .submit { padding: 14px 28px; background: var(--gold); border: 0; font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.room-grid > .reveal:nth-child(3n+2), .feature-cards > .reveal:nth-child(3n+2) { transition-delay: 0.1s; }
.room-grid > .reveal:nth-child(3n+3), .feature-cards > .reveal:nth-child(3n+3) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
	.js .reveal { opacity: 1; transform: none; }
	.hero__bg, .page-hero__bg { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
	.header-phone span { display: none; }
	.site-header__actions .header-phone { width: 44px; height: 44px; justify-content: center; border: 1px solid var(--line); }
}

@media (max-width: 1100px) {
	:root { --header-h: 80px; }
	.primary-nav, .site-header__actions > .header-phone { display: none; }
	.menu-toggle { display: block; }
	.brand__mark { font-size: 38px; }
	.room-grid, .feature-cards { grid-template-columns: repeat(2, 1fr); }
	.feature-cards--4 { grid-template-columns: repeat(2, 1fr); }
	.amenity-grid { grid-template-columns: repeat(2, 1fr); }
	.attraction-grid { grid-template-columns: repeat(3, 1fr); }
	.attraction-grid > .attraction, .attraction-grid > .attraction:nth-child(n+6) { grid-column: auto; }
	.attraction-grid--detailed { grid-template-columns: repeat(2, 1fr); }
	.room-detail__grid, .contact__grid { grid-template-columns: 1fr; }
	.room-detail__aside, .contact__aside { position: static; }
	.timeline { grid-template-columns: repeat(2, 1fr); row-gap: 56px; }
	.timeline::before { display: none; }
	.timeline__item::before { top: -24px; }
	.post-grid { grid-template-columns: repeat(2, 1fr); }
	.site-footer__top { flex-direction: column; text-align: center; }
}

@media (max-width: 860px) {
	body { font-size: 17px; }
	.welcome__grid, .location__grid, .room-row { grid-template-columns: 1fr; }
	.room-row--flip .room-row__media { order: 0; }
	.split { grid-template-columns: 1fr; min-height: 0; }
	.split--flip .split__media { order: 0; }
	.split__media { min-height: 320px; aspect-ratio: 16 / 10; }
	.facilities-strip__list { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
	.facilities-strip__item:nth-child(4)::before { display: none; }
	.travel-grid, .info-cards { grid-template-columns: 1fr; }
	.menu-cols, .daytrip-list { grid-template-columns: 1fr; }
	.menu-cols { padding: 32px 24px; gap: 28px; }
	.spec-bar { grid-template-columns: 1fr 1fr; }
	.spec-bar li:nth-child(3) { border-left: 0; }
	.spec-bar li:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
	.mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
	.mosaic figure:nth-child(4) { grid-row: auto; }
	.site-footer__cols { grid-template-columns: 1fr 1fr; }
	.site-footer__cols .footer-col:first-child { grid-column: 1 / -1; }
	.cta-band__rule { display: none; }
	.cta-band__inner { grid-template-columns: 1fr; gap: 26px; }
	.hero__bg::after { background: linear-gradient(0deg, rgba(12, 11, 9, 0.9) 0%, rgba(12, 11, 9, 0.55) 55%, rgba(12, 11, 9, 0.35) 100%); }
}

@media (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
}

@media (max-width: 600px) {
	.admin-bar .site-header { top: 0; }
	.site-header__actions > .btn { display: none; }
	.brand__mark { font-size: 34px; }
	.brand__tag { font-size: 7.5px; }
	.hero__content { text-align: center; margin-inline: auto; }
	.hero__brand { display: flex; }
	.hero__title { margin-inline: auto; }
	.hero__actions { justify-content: center; }
	.hero__actions .btn { width: 100%; }
	.room-grid, .feature-cards, .feature-cards--4, .attraction-grid--detailed, .post-grid { grid-template-columns: 1fr; }
	.attraction-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
	.attraction__title { font-size: 17px; }
	.amenity-grid { grid-template-columns: 1fr 1fr; }
	.amenity { padding: 26px 12px; }
	.amenity strong { font-size: 19px; }
	.facilities-strip__list { grid-template-columns: repeat(2, 1fr); }
	.facilities-strip__item::before { display: none; }
	.stats { gap: 22px; }
	.stats strong { font-size: 36px; }
	.form-grid { grid-template-columns: 1fr; }
	.check-list--cols, .spec-list { grid-template-columns: 1fr; }
	.timeline { grid-template-columns: 1fr; }
	.site-footer__cols { grid-template-columns: 1fr; }
	.site-footer__bottom { flex-direction: column; gap: 12px; }
	.heading-rule { gap: 14px; }
	.heading-rule h2 { letter-spacing: 0.14em; }
	.btn--block-sm { width: 100%; }
	.room-row__foot .btn-row, .room-row__foot .btn-row .btn { width: 100%; }
	.room-row__foot .btn-row .btn { flex: 1; }
	.booking-card { padding: 28px 22px; }
	.faq__item summary { font-size: 21px; }
}
