/* =========================================================
   YMT THE KAYU HALL — design system
   ========================================================= */

:root {
	--ink: #0b0907;
	--ink-2: #120e0a;
	--ink-3: #171009;
	--wood: #2b1a10;
	--bark: #7a4f2c;
	--gold: #c89b3c;
	--gold-soft: #d8ae5a;
	--cream: #f5ebdd;
	--cream-2: #fff9ef;
	--text: #241a12;
	--muted: #6f5c4a;
	--muted-on-dark: rgba(245, 235, 221, 0.68);
	--line-dark: rgba(216, 174, 90, 0.26);
	--line-light: rgba(43, 26, 16, 0.14);
	--f-display: "Playfair Display", Georgia, "Times New Roman", serif;
	--f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		Helvetica, Arial, sans-serif;
	--nav-h: 78px;
	--maxw: 1200px;
	--gutter: clamp(20px, 5vw, 48px);
	--radius: 3px;
}

* {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	background: var(--cream-2);
	color: var(--text);
	font-family: var(--f-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.is-locked {
	overflow: hidden;
}

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

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

h1,
h2,
h3,
h4 {
	margin: 0;
	font-weight: 500;
	font-family: var(--f-display);
	letter-spacing: -0.005em;
}

p {
	margin: 0 0 1.05em;
}

p:last-child {
	margin-bottom: 0;
}

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

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

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	background: var(--gold);
	color: #1a1108;
	padding: 12px 18px;
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.skip-link:focus {
	left: 12px;
	top: 12px;
}

.wrap {
	width: min(var(--maxw), 100%);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.wrap--narrow {
	max-width: 880px;
}

.wrap--wide {
	max-width: 1440px;
}

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

.section--tight {
	padding: clamp(48px, 6vw, 84px) 0;
}

.section--dark {
	background: var(--ink);
	color: var(--cream);
}

.section--dark-2 {
	background: linear-gradient(180deg, #0b0907 0%, #150f0a 55%, #0b0907 100%);
	color: var(--cream);
}

.section--cream {
	background: var(--cream-2);
	color: var(--text);
}

.section--sand {
	background: var(--cream);
	color: var(--text);
}

.rule-top {
	border-top: 1px solid var(--line-light);
}

.section--dark .rule-top,
.section--dark-2 .rule-top {
	border-color: var(--line-dark);
}

/* ---------- type ---------- */

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 18px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold);
	line-height: 1;
}

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

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

.eyebrow--center::after {
	content: "";
	width: 30px;
	height: 1px;
	background: currentColor;
	opacity: 0.75;
}

.h-display {
	font-size: clamp(34px, 5.4vw, 62px);
	line-height: 1.04;
}

.h2 {
	font-size: clamp(27px, 3.5vw, 42px);
	line-height: 1.14;
}

.h3 {
	font-size: clamp(19px, 2vw, 24px);
	line-height: 1.25;
}

.h4 {
	font-size: 17px;
	line-height: 1.3;
}

.lead {
	font-size: clamp(16px, 1.1vw, 18px);
	line-height: 1.75;
	color: var(--muted);
	max-width: 62ch;
}

.section--dark .lead,
.section--dark-2 .lead,
.hero .lead {
	color: var(--muted-on-dark);
}

.body-copy {
	color: var(--muted);
	line-height: 1.8;
	max-width: 62ch;
}

.section--dark .body-copy,
.section--dark-2 .body-copy {
	color: var(--muted-on-dark);
}

.malay {
	font-family: var(--f-display);
	font-style: italic;
	font-size: clamp(17px, 1.5vw, 21px);
	line-height: 1.6;
	color: var(--gold-soft);
	max-width: 58ch;
}

.section--cream .malay,
.section--sand .malay {
	color: var(--bark);
}

.center {
	text-align: center;
}

.center .lead,
.center .body-copy {
	margin-inline: auto;
}

.sec-head {
	max-width: 720px;
	margin-bottom: clamp(38px, 4.5vw, 60px);
}

.sec-head.center {
	margin-inline: auto;
}

.sec-head .h2 + .lead {
	margin-top: 18px;
}

/* ---------- buttons ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 26px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-family: var(--f-body);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease,
		transform 0.3s ease;
}

.btn svg {
	width: 17px;
	height: 17px;
	flex: none;
}

.btn--gold {
	background: var(--gold);
	color: #1a1108;
	border-color: var(--gold);
}

.btn--gold:hover {
	background: var(--gold-soft);
	border-color: var(--gold-soft);
	transform: translateY(-2px);
}

.btn--ghost {
	border-color: rgba(216, 174, 90, 0.5);
	color: var(--gold-soft);
}

.btn--ghost:hover {
	background: rgba(216, 174, 90, 0.12);
	border-color: var(--gold);
	color: var(--cream);
	transform: translateY(-2px);
}

.btn--dark {
	border-color: rgba(43, 26, 16, 0.28);
	color: var(--wood);
}

.btn--dark:hover {
	background: var(--wood);
	border-color: var(--wood);
	color: var(--cream-2);
	transform: translateY(-2px);
}

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

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.btn-row.center {
	justify-content: center;
}

.link-more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	padding-bottom: 6px;
	border-bottom: 1px solid rgba(200, 155, 60, 0.4);
	transition: gap 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.link-more svg {
	width: 16px;
	height: 16px;
}

.link-more:hover {
	gap: 16px;
	border-color: var(--gold);
}

.section--cream .link-more,
.section--sand .link-more {
	color: var(--bark);
	border-color: rgba(122, 79, 44, 0.35);
}

/* ---------- header ---------- */

.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 70;
	border-bottom: 1px solid transparent;
	transition: background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-solid {
	background: rgba(11, 9, 7, 0.95);
	border-bottom-color: var(--line-dark);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.header-inner {
	height: var(--nav-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: none;
}

.brand img {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid rgba(216, 174, 90, 0.45);
}

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

.brand-name {
	font-family: var(--f-display);
	font-size: 15px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--cream);
	line-height: 1;
}

.brand-sub {
	font-size: 8.5px;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: rgba(216, 174, 90, 0.8);
	line-height: 1;
}

.nav {
	display: flex;
	align-items: center;
	gap: 22px;
}

.nav a {
	position: relative;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(245, 235, 221, 0.82);
	padding: 6px 0;
	transition: color 0.25s ease;
}

.nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 0;
	height: 1px;
	background: var(--gold);
	transition: right 0.3s ease;
}

.nav a:hover,
.nav a.is-active {
	color: var(--gold-soft);
}

.nav a:hover::after,
.nav a.is-active::after {
	right: 0;
}

.header-cta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: none;
}

.header-cta .btn {
	min-height: 44px;
	padding: 0 20px;
	font-size: 10.5px;
}

.burger {
	display: none;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid rgba(216, 174, 90, 0.35);
	border-radius: var(--radius);
	color: var(--cream);
	cursor: pointer;
}

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

/* mobile drawer */

.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: rgba(11, 9, 7, 0.98);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	display: flex;
	flex-direction: column;
	padding: 22px var(--gutter) 40px;
	transform: translateY(-100%);
	transition: transform 0.45s cubic-bezier(0.3, 0.8, 0.3, 1);
	visibility: hidden;
	overflow-y: auto;
}

.mobile-nav.is-open {
	transform: translateY(0);
	visibility: visible;
}

.mobile-nav-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 52px;
}

.mobile-nav-links {
	margin: 30px 0 26px;
	display: flex;
	flex-direction: column;
}

.mobile-nav-links a {
	padding: 15px 0;
	border-bottom: 1px solid rgba(216, 174, 90, 0.16);
	font-family: var(--f-display);
	font-size: 21px;
	color: var(--cream);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mobile-nav-links a.is-active {
	color: var(--gold-soft);
}

.mobile-nav-links a span {
	font-family: var(--f-body);
	font-size: 10px;
	letter-spacing: 0.22em;
	color: rgba(216, 174, 90, 0.6);
}

.mobile-nav-foot {
	margin-top: auto;
	display: grid;
	gap: 12px;
}

.mobile-nav-foot .contact-line {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--muted-on-dark);
	font-size: 13px;
	letter-spacing: 0.04em;
}

.mobile-nav-foot .contact-line svg {
	width: 16px;
	height: 16px;
	color: var(--gold);
}

/* ---------- hero ---------- */

.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: flex-end;
	padding: calc(var(--nav-h) + 40px) 0 clamp(52px, 8vh, 96px);
	color: var(--cream);
	overflow: hidden;
	background: var(--ink);
}

.hero-media,
.page-hero-media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero-media img,
.page-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-media img {
	transform: scale(1.08);
	animation: heroDrift 18s ease-out forwards;
}

@keyframes heroDrift {
	to {
		transform: scale(1);
	}
}

.hero-media::after,
.page-hero-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			100deg,
			rgba(11, 9, 7, 0.9) 0%,
			rgba(11, 9, 7, 0.66) 46%,
			rgba(11, 9, 7, 0.3) 100%
		),
		linear-gradient(
			180deg,
			rgba(11, 9, 7, 0.78) 0%,
			rgba(11, 9, 7, 0.46) 40%,
			rgba(11, 9, 7, 0.78) 78%,
			rgba(11, 9, 7, 0.96) 100%
		);
}

.page-hero-inner .lead,
.page-hero-inner h1,
.page-hero-inner .eyebrow,
.page-hero-inner .crumbs {
	text-shadow: 0 1px 18px rgba(11, 9, 7, 0.75);
}

.page-hero-inner .lead {
	color: rgba(245, 235, 221, 0.92);
}

.hero-inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 16px;
	border: 1px solid rgba(216, 174, 90, 0.45);
	border-radius: 100px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--gold-soft);
	background: rgba(11, 9, 7, 0.35);
	margin-bottom: 26px;
}

.hero-badge svg {
	width: 14px;
	height: 14px;
}

.hero h1 {
	font-size: clamp(40px, 7vw, 82px);
	line-height: 1;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.hero-sub {
	margin: 20px 0 0;
	font-size: clamp(12px, 1.3vw, 14px);
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--gold-soft);
}

.hero .lead {
	margin-top: 22px;
	max-width: 54ch;
}

.hero-meta {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 22px;
	font-size: 13px;
	color: rgba(245, 235, 221, 0.8);
}

.hero-meta span {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.hero-meta svg {
	width: 16px;
	height: 16px;
	color: var(--gold);
	flex: none;
}

.hero-meta .divider {
	width: 1px;
	height: 14px;
	background: rgba(216, 174, 90, 0.4);
}

.hero .btn-row {
	margin-top: 34px;
}

.scroll-cue {
	position: absolute;
	right: var(--gutter);
	bottom: clamp(52px, 8vh, 96px);
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 9.5px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(245, 235, 221, 0.6);
	writing-mode: vertical-rl;
}

.scroll-cue::after {
	content: "";
	width: 1px;
	height: 54px;
	background: linear-gradient(180deg, rgba(216, 174, 90, 0.8), transparent);
}

/* page hero (interior pages) */

.page-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: clamp(360px, 54vh, 520px);
	padding: calc(var(--nav-h) + 48px) 0 clamp(40px, 5vw, 64px);
	background: var(--ink);
	color: var(--cream);
}

.page-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 780px;
}

.page-hero h1 {
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1.05;
	text-transform: uppercase;
	letter-spacing: 0.01em;
}

.page-hero .lead {
	margin-top: 18px;
}

.crumbs {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	font-size: 10.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(245, 235, 221, 0.6);
}

.crumbs a:hover {
	color: var(--gold-soft);
}

.crumbs svg {
	width: 13px;
	height: 13px;
	opacity: 0.6;
}

/* ---------- split rows ---------- */

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(28px, 5vw, 72px);
	align-items: center;
}

.split--reverse .split-media {
	order: 2;
}

.split-media {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
}

.split-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 5;
	transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.split-media--wide img {
	aspect-ratio: 4 / 3;
}

.split-media:hover img {
	transform: scale(1.045);
}

.media-tag {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 12px 18px;
	background: rgba(11, 9, 7, 0.82);
	color: var(--gold-soft);
	font-size: 10px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	border-top: 1px solid var(--line-dark);
	border-right: 1px solid var(--line-dark);
}

.feature-list {
	display: grid;
	gap: 18px;
	margin-top: 30px;
}

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

.feature-list svg {
	width: 20px;
	height: 20px;
	color: var(--gold);
	flex: none;
	margin-top: 2px;
}

.feature-list strong {
	display: block;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.02em;
	margin-bottom: 3px;
}

.feature-list p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--muted);
}

.section--dark .feature-list p,
.section--dark-2 .feature-list p {
	color: var(--muted-on-dark);
}

/* ---------- event cards ---------- */

.grid {
	display: grid;
	gap: clamp(16px, 2vw, 26px);
}

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

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

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

.event-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--ink-2);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 0.4s ease, transform 0.4s ease;
}

.section--cream .event-card,
.section--sand .event-card {
	background: #fff;
	border-color: var(--line-light);
}

.event-card:hover {
	border-color: rgba(216, 174, 90, 0.6);
	transform: translateY(-4px);
}

.event-card-media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 2;
}

.event-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.event-card:hover .event-card-media img {
	transform: scale(1.06);
}

.event-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 9, 7, 0.05), rgba(11, 9, 7, 0.62));
}

.event-num {
	position: absolute;
	z-index: 2;
	top: 16px;
	left: 18px;
	font-family: var(--f-display);
	font-size: 13px;
	letter-spacing: 0.2em;
	color: var(--gold-soft);
}

.event-card-body {
	padding: clamp(20px, 2vw, 28px);
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.event-card-body .icon-badge {
	margin-bottom: 2px;
}

.event-card-body .link-more {
	margin-top: auto;
	align-self: flex-start;
}

.event-card h3 {
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: clamp(17px, 1.6vw, 20px);
}

.event-card p {
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--muted-on-dark);
	margin: 0;
}

.section--cream .event-card p,
.section--sand .event-card p {
	color: var(--muted);
}

.event-card .link-more {
	margin-top: auto;
	align-self: flex-start;
}

.icon-badge {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line-dark);
	border-radius: 50%;
	color: var(--gold);
}

.section--cream .icon-badge,
.section--sand .icon-badge {
	border-color: rgba(122, 79, 44, 0.28);
	color: var(--bark);
}

.icon-badge svg {
	width: 20px;
	height: 20px;
}

/* ---------- packages ---------- */

.pkg-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(16px, 2vw, 24px);
	align-items: stretch;
}

.pkg {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: clamp(26px, 3vw, 38px) clamp(22px, 2.4vw, 32px);
	background: linear-gradient(180deg, #150f0a 0%, #0d0906 100%);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	transition: transform 0.4s ease, border-color 0.4s ease;
}

.section--cream .pkg,
.section--sand .pkg {
	background: #fff;
	border-color: var(--line-light);
	color: var(--text);
}

.pkg:hover {
	transform: translateY(-5px);
	border-color: rgba(216, 174, 90, 0.55);
}

.pkg--featured {
	border-color: rgba(216, 174, 90, 0.6);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.pkg-badge {
	position: absolute;
	top: 0;
	right: 22px;
	transform: translateY(-50%);
	padding: 7px 14px;
	background: var(--gold);
	color: #1a1108;
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	border-radius: 100px;
}

.pkg-name {
	font-family: var(--f-display);
	font-size: 22px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold-soft);
}

.section--cream .pkg-name,
.section--sand .pkg-name {
	color: var(--bark);
}

.pkg-pax {
	margin-top: 6px;
	font-size: 11px;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--muted-on-dark);
}

.section--cream .pkg-pax,
.section--sand .pkg-pax {
	color: var(--muted);
}

.pkg-price {
	margin: 20px 0 4px;
	display: flex;
	align-items: baseline;
	gap: 8px;
	font-family: var(--f-display);
	line-height: 1;
}

.pkg-price .cur {
	font-size: 17px;
	letter-spacing: 0.1em;
	color: var(--gold);
}

.pkg-price .val {
	font-size: clamp(36px, 4vw, 50px);
}

.pkg-note {
	font-size: 12.5px;
	color: var(--muted-on-dark);
	letter-spacing: 0.04em;
}

.section--cream .pkg-note,
.section--sand .pkg-note {
	color: var(--muted);
}

.pkg hr,
.hr-gold {
	border: 0;
	height: 1px;
	background: var(--line-dark);
	margin: 24px 0;
}

.section--cream .pkg hr,
.section--sand .pkg hr,
.section--cream .hr-gold,
.section--sand .hr-gold {
	background: var(--line-light);
}

.incl-title {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 16px;
}

.incl {
	display: grid;
	gap: 12px;
	margin-bottom: 28px;
}

.incl li {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--muted-on-dark);
}

.section--cream .incl li,
.section--sand .incl li {
	color: var(--muted);
}

.incl svg {
	width: 17px;
	height: 17px;
	flex: none;
	margin-top: 2px;
	color: var(--gold);
}

.pkg .btn {
	margin-top: auto;
}

/* value blocks */

.value-card {
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	padding: clamp(24px, 2.6vw, 34px);
	background: rgba(255, 255, 255, 0.02);
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.section--cream .value-card,
.section--sand .value-card {
	background: #fff;
	border-color: var(--line-light);
}

.value-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.value-price {
	font-family: var(--f-display);
	font-size: clamp(30px, 3.2vw, 40px);
	line-height: 1;
	color: var(--gold-soft);
}

.section--cream .value-price,
.section--sand .value-price {
	color: var(--bark);
}

.value-guests {
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--muted);
}

.section--dark .value-guests,
.section--dark-2 .value-guests {
	color: var(--muted-on-dark);
}

.value-items {
	display: grid;
	gap: 14px;
}

.value-items li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14.5px;
}

.value-items svg {
	width: 19px;
	height: 19px;
	color: var(--gold);
	flex: none;
}

/* equation */

.equation {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 12px;
}

.eq-item {
	width: 152px;
	padding: 22px 14px;
	text-align: center;
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.02);
}

.eq-item svg {
	width: 24px;
	height: 24px;
	color: var(--gold);
}

.eq-item span {
	font-size: 10.5px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	line-height: 1.5;
	color: var(--cream);
}

.eq-op {
	align-self: center;
	font-family: var(--f-display);
	font-size: 24px;
	color: var(--gold);
}

.eq-result {
	flex-basis: 100%;
	margin-top: 8px;
	text-align: center;
}

.eq-result strong {
	display: inline-block;
	font-family: var(--f-display);
	font-weight: 500;
	font-size: clamp(20px, 2.4vw, 28px);
	letter-spacing: 0.04em;
	color: var(--gold-soft);
	border-bottom: 1px solid rgba(216, 174, 90, 0.4);
	padding-bottom: 10px;
}

/* ---------- food ---------- */

.food-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(14px, 1.6vw, 22px);
}

.food-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 30px 20px 26px;
	background: linear-gradient(180deg, #16100b 0%, #0c0806 100%);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	transition: transform 0.45s ease, border-color 0.45s ease;
	overflow: hidden;
}

.food-card::before {
	content: "";
	position: absolute;
	top: -30%;
	left: 50%;
	width: 260px;
	height: 260px;
	transform: translateX(-50%);
	background: radial-gradient(
		circle,
		rgba(200, 155, 60, 0.16) 0%,
		rgba(200, 155, 60, 0) 68%
	);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.food-card:hover {
	transform: translateY(-6px);
	border-color: rgba(216, 174, 90, 0.55);
}

.food-card:hover::before {
	opacity: 1;
}

.food-img {
	position: relative;
	width: 100%;
	max-width: 240px;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.food-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.55));
	transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.food-card:hover .food-img img {
	transform: scale(1.06);
}

.food-card h3 {
	margin-top: 18px;
	font-size: 18px;
	color: var(--cream);
}

.food-card .food-kind {
	margin-top: 10px;
	font-size: 9.5px;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--gold);
}

.food-card p {
	margin-top: 12px;
	font-size: 13.5px;
	line-height: 1.65;
	color: var(--muted-on-dark);
}

.food-card .hairline {
	width: 34px;
	height: 1px;
	background: rgba(216, 174, 90, 0.5);
	margin: 14px 0 0;
}

/* horizontal rail (mobile swipe) */

.rail {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(240px, 1fr);
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 10px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.rail > * {
	scroll-snap-align: start;
}

.rail-hint {
	display: none;
	margin-top: 14px;
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(216, 174, 90, 0.7);
	align-items: center;
	gap: 8px;
}

.rail-hint svg {
	width: 15px;
	height: 15px;
}

/* ---------- gallery ---------- */

.filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 34px;
}

.filter-btn {
	padding: 11px 20px;
	background: transparent;
	border: 1px solid var(--line-dark);
	border-radius: 100px;
	color: var(--muted-on-dark);
	font-family: var(--f-body);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-btn:hover {
	color: var(--cream);
	border-color: rgba(216, 174, 90, 0.55);
}

.filter-btn.is-active {
	background: var(--gold);
	border-color: var(--gold);
	color: #1a1108;
}

.masonry {
	columns: 3;
	column-gap: clamp(12px, 1.5vw, 18px);
}

.masonry-item {
	break-inside: avoid;
	margin-bottom: clamp(12px, 1.5vw, 18px);
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	border: 1px solid var(--line-dark);
	cursor: zoom-in;
	display: block;
	width: 100%;
	padding: 0;
	background: var(--ink-2);
}

.masonry-item img {
	width: 100%;
	height: auto;
	transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.masonry-item.is-food {
	background: linear-gradient(180deg, #16100b, #0c0806);
	padding: 26px;
}

.masonry-item:hover img {
	transform: scale(1.05);
}

.masonry-cap {
	position: absolute;
	inset: auto 0 0 0;
	padding: 30px 16px 14px;
	background: linear-gradient(180deg, transparent, rgba(11, 9, 7, 0.86));
	color: var(--cream);
	font-size: 10.5px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-align: left;
	opacity: 0;
	transform: translateY(8px);
	transition: all 0.4s ease;
}

.masonry-item:hover .masonry-cap,
.masonry-item:focus-visible .masonry-cap {
	opacity: 1;
	transform: none;
}

/* lightbox */

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 120;
	background: rgba(6, 5, 4, 0.96);
	display: none;
	align-items: center;
	justify-content: center;
	padding: clamp(16px, 4vw, 48px);
}

.lightbox.is-open {
	display: flex;
}

.lightbox img {
	max-width: min(1100px, 92vw);
	max-height: 80vh;
	object-fit: contain;
	border-radius: var(--radius);
}

.lb-btn {
	position: absolute;
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(11, 9, 7, 0.7);
	border: 1px solid var(--line-dark);
	border-radius: 50%;
	color: var(--cream);
	cursor: pointer;
	transition: all 0.3s ease;
}

.lb-btn:hover {
	border-color: var(--gold);
	color: var(--gold-soft);
}

.lb-btn svg {
	width: 20px;
	height: 20px;
}

.lb-close {
	top: clamp(14px, 3vw, 28px);
	right: clamp(14px, 3vw, 28px);
}

.lb-prev {
	left: clamp(10px, 2.5vw, 30px);
}

.lb-next {
	right: clamp(10px, 2.5vw, 30px);
}

.lb-caption {
	position: absolute;
	bottom: clamp(18px, 4vw, 34px);
	left: 50%;
	transform: translateX(-50%);
	font-size: 10.5px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: rgba(245, 235, 221, 0.72);
	text-align: center;
}

/* ---------- location / contact ---------- */

.info-card {
	border: 1px solid var(--line-light);
	border-radius: var(--radius);
	padding: clamp(24px, 2.6vw, 34px);
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.section--dark .info-card,
.section--dark-2 .info-card {
	background: rgba(255, 255, 255, 0.02);
	border-color: var(--line-dark);
}

.info-line {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

.info-line svg {
	width: 20px;
	height: 20px;
	color: var(--gold);
	flex: none;
	margin-top: 3px;
}

.info-line .k {
	display: block;
	font-size: 9.5px;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 5px;
}

.section--dark .info-line .k,
.section--dark-2 .info-line .k {
	color: rgba(245, 235, 221, 0.55);
}

.info-line .v {
	font-size: 16px;
	line-height: 1.5;
}

.info-line a.v:hover {
	color: var(--gold);
}

/* form */

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.field--full {
	grid-column: 1 / -1;
}

.field label {
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--muted);
}

.section--dark .field label,
.section--dark-2 .field label {
	color: rgba(245, 235, 221, 0.6);
}

.field input,
.field select,
.field textarea {
	width: 100%;
	min-height: 52px;
	padding: 14px 16px;
	background: transparent;
	border: 1px solid var(--line-light);
	border-radius: var(--radius);
	color: inherit;
	font-family: var(--f-body);
	font-size: 15px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.section--dark .field input,
.section--dark .field select,
.section--dark .field textarea,
.section--dark-2 .field input,
.section--dark-2 .field select,
.section--dark-2 .field textarea {
	border-color: var(--line-dark);
	background: rgba(255, 255, 255, 0.02);
}

.field textarea {
	min-height: 132px;
	resize: vertical;
}

.field select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c89b3c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 44px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.14);
}

.form-note {
	font-size: 12.5px;
	line-height: 1.6;
	color: var(--muted);
}

.section--dark .form-note,
.section--dark-2 .form-note {
	color: rgba(245, 235, 221, 0.6);
}

/* ---------- cta band ---------- */

.cta-band {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	color: var(--cream);
	text-align: center;
	padding: clamp(64px, 8vw, 110px) 0;
}

.cta-band img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.34;
}

.cta-band::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(11, 9, 7, 0.86),
		rgba(11, 9, 7, 0.72) 50%,
		rgba(11, 9, 7, 0.9)
	);
}

.cta-inner {
	position: relative;
	z-index: 2;
}

/* ---------- footer ---------- */

.site-footer {
	background: #080706;
	color: var(--cream);
	border-top: 1px solid var(--line-dark);
	padding: clamp(48px, 6vw, 78px) 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: clamp(26px, 3vw, 48px);
	padding-bottom: 48px;
}

.footer-brand img {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	border: 1px solid rgba(216, 174, 90, 0.4);
	margin-bottom: 18px;
}

.footer-title {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 18px;
}

.footer-links {
	display: grid;
	gap: 11px;
}

.footer-links a {
	font-size: 13.5px;
	color: rgba(245, 235, 221, 0.72);
	transition: color 0.25s ease;
}

.footer-links a:hover {
	color: var(--gold-soft);
}

.footer-bottom {
	border-top: 1px solid rgba(216, 174, 90, 0.16);
	padding: 22px 0 28px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 26px;
	justify-content: space-between;
	font-size: 11.5px;
	letter-spacing: 0.06em;
	color: rgba(245, 235, 221, 0.52);
}

/* ---------- mobile action bar ---------- */

.mobile-bar {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 80;
	display: none;
	background: rgba(11, 9, 7, 0.96);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-top: 1px solid var(--line-dark);
	padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
	gap: 10px;
}

.mobile-bar .btn {
	flex: 1;
	min-height: 48px;
	padding: 0 12px;
	font-size: 10.5px;
	letter-spacing: 0.14em;
}

/* ---------- reveal ---------- */

[data-reveal] {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.85s cubic-bezier(0.2, 0.7, 0.2, 1),
		transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-in {
	opacity: 1;
	transform: none;
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
	.nav,
	.header-cta .btn {
		display: none;
	}

	.burger {
		display: inline-flex;
	}

	.grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}

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

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

	.split--reverse .split-media {
		order: 0;
	}

	.split-media img,
	.split-media--wide img {
		aspect-ratio: 4 / 3;
	}

	.grid--3,
	.pkg-grid {
		grid-template-columns: 1fr;
	}

	.masonry {
		columns: 2;
	}

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

	.mobile-bar {
		display: flex;
	}

	body {
		padding-bottom: 72px;
	}

	.scroll-cue {
		display: none;
	}

	.rail-hint {
		display: inline-flex;
	}
}

@media (max-width: 640px) {
	.grid--2,
	.grid--4,
	.food-grid {
		grid-template-columns: 1fr;
	}

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

	.masonry {
		columns: 1;
	}

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

	.equation {
		flex-direction: column;
		align-items: stretch;
	}

	.eq-item {
		width: 100%;
		flex-direction: row;
		justify-content: flex-start;
		text-align: left;
		gap: 16px;
		padding: 16px 18px;
	}

	.eq-op {
		text-align: center;
	}

	.hero {
		min-height: 92svh;
	}

	.food-card {
		padding: 26px 18px 24px;
	}
}

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

	[data-reveal] {
		opacity: 1;
		transform: none;
	}
}

@media print {
	.site-header,
	.mobile-bar,
	.mobile-nav {
		display: none;
	}
}
