/*
 * BayArea Luxe — design system & components.
 * Black & champagne-gold luxury chauffeur language.
 */

/* ---------- Tokens ---------- */
:root {
	--ink: #0b0c10;
	--ink-2: #12141b;
	--ink-3: #1a1d26;
	--gold: #c8a558;
	--gold-2: #e6d193;
	--gold-deep: #a9853d;
	--paper: #f8f7f3;
	--mist: #efede5;
	--line: #e3e0d6;
	--text: #26282f;
	--muted: #6d7078;
	--white: #ffffff;
	--font-display: 'Playfair Display', Georgia, serif;
	--font-body: 'Jost', 'Segoe UI', Tahoma, sans-serif;
	--shadow-1: 0 10px 30px rgba(11, 12, 16, .08);
	--shadow-2: 0 24px 60px rgba(11, 12, 16, .16);
	--radius: 14px;
	--header-h: 88px;
	--ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16.5px;
	line-height: 1.7;
	color: var(--text);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--ink);
	line-height: 1.15;
	margin: 0 0 .5em;
	font-weight: 600;
}

button { font-family: inherit; }

.icon { width: 18px; height: 18px; flex: none; }

.container {
	width: min(1240px, 100% - 48px);
	margin-inline: auto;
}

.section { padding: 100px 0; }

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 200;
	background: var(--gold);
	color: var(--ink);
	padding: 10px 18px;
	border-radius: 8px;
	clip: auto;
	clip-path: none;
	width: auto;
	height: auto;
	margin: 0;
}

/* ---------- Type helpers ---------- */
.kicker {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .38em;
	text-transform: uppercase;
	color: var(--gold-deep);
	margin-bottom: 14px;
}

.kicker-light { color: var(--gold-2); }

.section-head {
	max-width: 720px;
	margin: 0 auto 60px;
	text-align: center;
}

.section-title {
	font-size: clamp(2rem, 4vw, 2.9rem);
	margin: 0;
}

.section-title.is-left { text-align: left; }

.ornament {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: 20px 0;
}

.ornament .line {
	width: 64px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament .line:last-child { background: linear-gradient(90deg, var(--gold), transparent); }

.ornament .medal {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--gold-2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ornament .medal .icon { width: 16px; height: 16px; }

.section-text {
	color: var(--muted);
	font-size: 17px;
	margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 30px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .18em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.btn .icon { width: 16px; height: 16px; }

.btn-gold {
	background: linear-gradient(135deg, var(--gold-2), var(--gold));
	color: var(--ink);
	box-shadow: 0 8px 24px rgba(200, 165, 88, .28);
}

.btn-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(200, 165, 88, .4);
}

.btn-ghost {
	border-color: rgba(255, 255, 255, .45);
	color: var(--white);
	background: rgba(11, 12, 16, .18);
	backdrop-filter: blur(4px);
}

.btn-ghost:hover {
	border-color: var(--gold-2);
	color: var(--gold-2);
}

.btn-ink {
	background: var(--ink);
	color: var(--gold-2);
}

.btn-ink:hover { background: var(--ink-3); transform: translateY(-2px); }

.btn-sm { padding: 11px 24px; font-size: 12px; }

.btn-block { width: 100%; }

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--gold-deep);
}

.text-link .icon { width: 15px; height: 15px; transition: transform .25s var(--ease); }

.text-link:hover .icon { transform: translateX(4px); }

/* ---------- Top bar ---------- */
.site-topbar {
	background: var(--ink-2);
	color: rgba(255, 255, 255, .72);
	font-size: 13px;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 8px 0;
}

.topbar-contact,
.topbar-meta { display: flex; align-items: center; gap: 26px; }

.topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.topbar-item .icon { width: 14px; height: 14px; color: var(--gold); }

a.topbar-item:hover { color: var(--gold-2); }

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(11, 12, 16, .9);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, .07);
	transition: background .3s var(--ease), box-shadow .3s var(--ease);
}

.site-header.is-stuck {
	background: rgba(11, 12, 16, .98);
	box-shadow: 0 12px 34px rgba(0, 0, 0, .35);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 34px;
	min-height: var(--header-h);
	transition: min-height .3s var(--ease);
}

.site-header.is-stuck .header-inner { min-height: 70px; }

.brand { display: inline-flex; align-items: center; }

.brand img,
.custom-logo {
	height: 68px;
	width: auto;
	transition: height .3s var(--ease);
}

.site-header.is-stuck .brand img,
.site-header.is-stuck .custom-logo { height: 50px; }

.brand-wordmark { display: flex; flex-direction: column; line-height: 1.1; }

.brand-title {
	font-family: var(--font-display);
	font-size: 24px;
	color: var(--gold-2);
	letter-spacing: .06em;
}

.brand-tagline {
	font-size: 11px;
	letter-spacing: .42em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .55);
}

.primary-nav { margin-left: auto; }

.nav-list {
	display: flex;
	align-items: center;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-list > .menu-item { position: relative; }

.nav-list > .menu-item > a {
	display: inline-block;
	padding: 10px 0;
	font-size: 14.5px;
	letter-spacing: .05em;
	color: rgba(255, 255, 255, .82);
	position: relative;
}

.nav-list > .menu-item > a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2px;
	height: 1px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s var(--ease);
}

.nav-list > .menu-item > a:hover,
.nav-list > .menu-item.current-menu-item > a,
.nav-list > .menu-item.current_page_item > a { color: var(--gold-2); }

.nav-list > .menu-item > a:hover::after,
.nav-list > .menu-item.current-menu-item > a::after,
.nav-list > .menu-item.current_page_item > a::after { transform: scaleX(1); }

/* Dropdown (depth 2) */
.nav-list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 230px;
	list-style: none;
	margin: 0;
	padding: 10px;
	background: var(--ink-2);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 10px;
	box-shadow: var(--shadow-2);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}

.nav-list .menu-item-has-children:hover > .sub-menu,
.nav-list .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-list .sub-menu a {
	display: block;
	padding: 9px 14px;
	font-size: 14px;
	color: rgba(255, 255, 255, .75);
	border-radius: 6px;
}

.nav-list .sub-menu a:hover { background: rgba(200, 165, 88, .12); color: var(--gold-2); }

.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-left: 6px;
}

.btn-book { padding: 13px 26px; }

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 8px;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	height: 2px;
	background: var(--gold-2);
	border-radius: 2px;
	transition: transform .3s var(--ease), opacity .3s;
}

/* ---------- Drawer ---------- */
.drawer-backdrop {
	position: fixed;
	inset: 0;
	z-index: 110;
	background: rgba(5, 6, 9, .6);
	backdrop-filter: blur(2px);
	opacity: 0;
	transition: opacity .3s var(--ease);
}

.drawer-backdrop.is-visible { opacity: 1; }

.site-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 120;
	width: min(360px, 88vw);
	background: var(--ink-2);
	border-left: 1px solid rgba(255, 255, 255, .08);
	display: flex;
	flex-direction: column;
	transform: translateX(102%);
	transition: transform .38s var(--ease);
}

.site-drawer.is-open { transform: translateX(0); }

.drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.drawer-title {
	font-family: var(--font-display);
	color: var(--gold-2);
	font-size: 20px;
}

.drawer-close {
	background: transparent;
	border: 0;
	color: rgba(255, 255, 255, .7);
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
}

.drawer-close:hover { color: var(--gold-2); }

.drawer-nav { flex: 1; overflow-y: auto; padding: 12px 24px; }

.drawer-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.drawer-nav ul ul { padding-left: 16px; }

.drawer-nav a {
	display: block;
	padding: 13px 2px;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
	color: rgba(255, 255, 255, .82);
	font-size: 15.5px;
	letter-spacing: .04em;
}

.drawer-nav a:hover { color: var(--gold-2); }

.drawer-foot {
	padding: 20px 24px 28px;
	border-top: 1px solid rgba(255, 255, 255, .08);
	display: grid;
	gap: 14px;
}

.drawer-phone {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: var(--gold-2);
	font-size: 18px;
	letter-spacing: .04em;
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	height: min(88vh, 860px);
	min-height: 560px;
	overflow: hidden;
	background: var(--ink);
}

.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1.1s var(--ease), visibility 1.1s;
}

.hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	animation: hero-zoom 7.5s ease-out forwards;
}

@keyframes hero-zoom {
	from { background-size: 100% auto; }
	to   { background-size: 112% auto; }
}

.hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(100deg, rgba(8, 9, 12, .88) 0%, rgba(8, 9, 12, .55) 48%, rgba(8, 9, 12, .18) 100%),
		linear-gradient(0deg, rgba(8, 9, 12, .55) 0%, transparent 40%);
}

.hero-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px 0 40px;
	max-width: 780px;
}

.hero-title {
	font-size: clamp(2.5rem, 5.4vw, 4.3rem);
	color: var(--white);
	margin: 6px 0 18px;
	text-shadow: 0 4px 30px rgba(0, 0, 0, .45);
}

.hero-text {
	max-width: 560px;
	color: rgba(255, 255, 255, .84);
	font-size: 18px;
	font-weight: 300;
	margin: 0;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

.hero-slide .hero-content > * {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.hero-slide.is-active .hero-content > * { opacity: 1; transform: none; }

.hero-slide.is-active .hero-content > *:nth-child(1) { transition-delay: .25s; }
.hero-slide.is-active .hero-content > *:nth-child(2) { transition-delay: .4s; }
.hero-slide.is-active .hero-content > *:nth-child(3) { transition-delay: .55s; }
.hero-slide.is-active .hero-content > *:nth-child(4) { transition-delay: .7s; }

.hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .35);
	background: rgba(11, 12, 16, .35);
	color: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .25s var(--ease), color .25s, border-color .25s;
}

.hero-arrow .icon { width: 20px; height: 20px; }

.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.hero-prev { left: 28px; }
.hero-next { right: 28px; }

.hero-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 26px;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.hero-dots button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 6px;
	background: rgba(255, 255, 255, .4);
	cursor: pointer;
	transition: width .3s var(--ease), background .3s;
}

.hero-dots button.is-active { width: 28px; background: var(--gold); }

/* ---------- Stats ---------- */
.stats-band {
	background: var(--ink);
	padding: 48px 0;
	border-bottom: 1px solid rgba(200, 165, 88, .18);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.stat {
	text-align: center;
	padding: 6px 18px;
	border-left: 1px solid rgba(255, 255, 255, .08);
}

.stat:first-child { border-left: 0; }

.stat-number {
	display: block;
	font-family: var(--font-display);
	font-size: 42px;
	color: var(--gold-2);
	line-height: 1;
	margin-bottom: 10px;
}

.stat-label {
	font-size: 12px;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
}

/* ---------- Services ---------- */
.services-section { background: var(--paper); }

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.service-card {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-1);
}

.service-media,
.service-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.service-media img {
	object-fit: cover;
	transition: transform .9s var(--ease);
}

.service-card:hover .service-media img { transform: scale(1.07); }

.service-veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(8, 9, 12, .88) 0%, rgba(8, 9, 12, .25) 55%, transparent 100%);
	transition: background .4s var(--ease);
}

.service-card:hover .service-veil {
	background: linear-gradient(0deg, rgba(8, 9, 12, .92) 0%, rgba(8, 9, 12, .4) 60%, rgba(200, 165, 88, .12) 100%);
}

.service-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 26px;
}

.service-title {
	color: var(--white);
	font-size: 22px;
	margin: 0 0 6px;
}

.service-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--gold-2);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .35s var(--ease), transform .35s var(--ease);
}

.service-cta .icon { width: 15px; height: 15px; }

.service-card:hover .service-cta { opacity: 1; transform: none; }

/* ---------- Fleet ---------- */
.fleet-section { background: var(--white); }

.fleet-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 46px;
}

.filter-chip {
	padding: 11px 24px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
	color: var(--muted);
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all .25s var(--ease);
}

.filter-chip:hover { border-color: var(--gold); color: var(--ink); }

.filter-chip.is-active {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--gold-2);
}

.fleet-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
	gap: 26px;
}

.fleet-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px 24px 30px;
	text-align: center;
	display: flex;
	flex-direction: column;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}

.fleet-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-2);
	border-color: rgba(200, 165, 88, .5);
}

.fleet-card.is-hidden { display: none; }

.fleet-media {
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.fleet-media img {
	max-height: 100%;
	width: auto;
	object-fit: contain;
	transition: transform .5s var(--ease);
}

.fleet-card:hover .fleet-media img { transform: scale(1.06); }

.fleet-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--gold-deep);
	margin-bottom: 6px;
}

.fleet-name { font-size: 21px; margin: 0 0 18px; }

.fleet-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
}

.fleet-body .btn { margin-top: auto; }

/* ---------- About / why us ---------- */
.about-section { background: var(--ink); }

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 70px;
	align-items: center;
}

.about-media { position: relative; }

.about-media img {
	border-radius: var(--radius);
	box-shadow: var(--shadow-2);
}

.about-media::before {
	content: '';
	position: absolute;
	inset: 22px -22px -22px 22px;
	border: 1px solid rgba(200, 165, 88, .45);
	border-radius: var(--radius);
	z-index: 0;
}

.about-media img { position: relative; z-index: 1; }

.about-badge {
	position: absolute;
	right: -18px;
	bottom: -24px;
	z-index: 2;
	background: linear-gradient(135deg, var(--gold-2), var(--gold));
	color: var(--ink);
	border-radius: 12px;
	padding: 18px 26px;
	text-align: center;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
}

.badge-number {
	display: block;
	font-family: var(--font-display);
	font-size: 34px;
	line-height: 1;
}

.badge-label {
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
	font-weight: 500;
}

.about-copy .kicker { color: var(--gold-2); }

.about-copy .section-title { color: var(--white); margin-bottom: 18px; }

.about-text { color: rgba(255, 255, 255, .72); font-size: 17px; }

.feature-list {
	list-style: none;
	margin: 34px 0 38px;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.feature-item { display: flex; gap: 14px; align-items: flex-start; }

.feature-icon {
	width: 42px;
	height: 42px;
	flex: none;
	border-radius: 50%;
	border: 1px solid rgba(200, 165, 88, .45);
	color: var(--gold-2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.feature-copy strong {
	display: block;
	color: var(--white);
	font-weight: 500;
	font-size: 15.5px;
	letter-spacing: .02em;
}

.feature-copy small { color: rgba(255, 255, 255, .58); font-size: 13.5px; line-height: 1.55; }

.about-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- CTA band ---------- */
.cta-band {
	position: relative;
	background-color: var(--ink);
	background-size: cover;
	background-position: center;
	padding: 120px 0;
	text-align: center;
}

.cta-shade {
	position: absolute;
	inset: 0;
	background: rgba(8, 9, 12, .8);
}

.cta-inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
}

.cta-title {
	color: var(--white);
	font-size: clamp(2rem, 4vw, 3.1rem);
	margin: 4px 0 14px;
}

.cta-text { color: rgba(255, 255, 255, .78); font-size: 17.5px; margin: 0; }

.cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-top: 34px;
}

/* ---------- Footer ---------- */
.site-footer { background: #0a0b0e; color: rgba(255, 255, 255, .68); }

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 48px;
	padding: 78px 0 30px;
}

.footer-logo img,
.footer-logo .custom-logo { height: 62px; }

.footer-logo .brand-title { font-size: 22px; }

.footer-about { font-size: 14.5px; line-height: 1.85; margin: 20px 0 24px; }

.footer-social { display: flex; gap: 10px; }

.social-link {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .18);
	color: rgba(255, 255, 255, .8);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all .25s var(--ease);
}

.social-link .icon { width: 16px; height: 16px; }

.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.footer-title {
	position: relative;
	color: var(--white);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .22em;
	text-transform: uppercase;
	margin: 6px 0 24px;
	padding-bottom: 12px;
}

.footer-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 2px;
	background: var(--gold);
}

.footer-links { list-style: none; margin: 0; padding: 0; }

.footer-links li { margin: 11px 0; }

.footer-links a { font-size: 14.5px; color: rgba(255, 255, 255, .66); }

.footer-links a:hover { color: var(--gold-2); padding-left: 6px; }

.footer-contact { list-style: none; margin: 0; padding: 0; }

.footer-contact li { display: flex; gap: 12px; margin: 13px 0; font-size: 14.5px; align-items: flex-start; }

.footer-contact .icon { width: 16px; height: 16px; color: var(--gold); margin-top: 4px; }

.footer-contact a:hover { color: var(--gold-2); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .07); padding: 20px 0; }

.footer-bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-right: 64px;
}

.footer-copy { margin: 0; font-size: 13.5px; color: rgba(255, 255, 255, .5); }

.legal-links { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }

.legal-links a { font-size: 13px; color: rgba(255, 255, 255, .55); }

.legal-links a:hover { color: var(--gold-2); }

/* ---------- Back to top ---------- */
.to-top {
	position: fixed;
	right: 26px;
	bottom: 26px;
	z-index: 100;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: var(--gold);
	color: var(--ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 12px 30px rgba(200, 165, 88, .4);
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.to-top .icon { transform: rotate(-90deg); }

.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

/* ---------- Inner pages ---------- */
.page-banner {
	position: relative;
	background: var(--ink-3) center / cover no-repeat;
	padding: 100px 0 62px;
}

.page-banner-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(8, 9, 12, .92), rgba(8, 9, 12, .68));
}

.page-banner-inner { position: relative; z-index: 2; }

.page-banner-title {
	color: var(--white);
	font-size: clamp(2.1rem, 4vw, 3.2rem);
	margin: 0 0 10px;
}

.breadcrumb { font-size: 13px; color: rgba(255, 255, 255, .55); letter-spacing: .06em; }

.breadcrumb a { color: var(--gold-2); }

.breadcrumb a:hover { text-decoration: underline; }

.crumb-sep { margin: 0 8px; color: rgba(255, 255, 255, .35); }

.page-wrap { padding: 90px 0; }

.page-wrap.is-narrow { max-width: 860px; }

.entry-content { font-size: 17px; }

.entry-content p { margin: 0 0 1.15em; }

.entry-content h2, .entry-content h3, .entry-content h4 { margin: 1.4em 0 .6em; }

.entry-content h2 { font-size: 28px; }
.entry-content h3 { font-size: 23px; }

.entry-content ul, .entry-content ol { padding-left: 1.25em; margin: 0 0 1.2em; }

.entry-content li { margin: .35em 0; }

.entry-content a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }

.entry-content blockquote {
	margin: 1.6em 0;
	padding: 6px 0 6px 22px;
	border-left: 3px solid var(--gold);
	font-style: italic;
	color: var(--muted);
}

.entry-content img { border-radius: 10px; }

.entry-content table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; }

.entry-content th, .entry-content td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }

.entry-content th { background: var(--mist); }

/* Forms (CF7 & friends) */
.entry-content input[type="text"],
.entry-content input[type="email"],
.entry-content input[type="tel"],
.entry-content input[type="date"],
.entry-content input[type="number"],
.entry-content select,
.entry-content textarea,
.search-form input[type="search"] {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--white);
	font-family: inherit;
	font-size: 15px;
	color: var(--text);
	transition: border-color .25s, box-shadow .25s;
}

.entry-content input:focus,
.entry-content select:focus,
.entry-content textarea:focus,
.search-form input:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(200, 165, 88, .18);
}

.entry-content .wpcf7-form p { margin: 0 0 1.1em; }

.entry-content .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 34px;
	border: 0;
	border-radius: 4px;
	background: linear-gradient(135deg, var(--gold-2), var(--gold));
	color: var(--ink);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .18em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.entry-content .wpcf7-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(200, 165, 88, .4); }

.page-links { margin: 1.6em 0; }

.page-links a, .page-links > span { margin-right: 6px; }

/* Single post */
.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	font-size: 13px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 22px;
}

.entry-meta a { color: var(--gold-deep); }

.entry-thumb { margin: 0 0 30px; }

.entry-thumb img { border-radius: var(--radius); }

.entry-footer { border-top: 1px solid var(--line); margin-top: 34px; padding-top: 18px; }

.tags-links a {
	display: inline-block;
	margin: 0 6px 6px 0;
	padding: 6px 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 12.5px;
	color: var(--muted);
}

.tags-links a:hover { border-color: var(--gold); color: var(--ink); }

.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 40px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
}

.nav-next { text-align: right; }

.nav-dir {
	font-size: 11px;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--gold-deep);
}

.post-navigation a { color: var(--ink); font-weight: 500; }

.post-navigation a:hover { color: var(--gold-deep); }

/* Cards grid (blog / archive / search) */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.post-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }

.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: 24px 24px 28px; }

.post-card-date {
	font-size: 11.5px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--muted);
}

.post-card-title { font-size: 20px; margin: 10px 0 10px; }

.post-card-title a:hover { color: var(--gold-deep); }

.post-card-excerpt { color: var(--muted); font-size: 14.5px; margin: 0 0 16px; }

.pagination-wrap { margin-top: 48px; }

.pagination-wrap .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.pagination-wrap .page-numbers {
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--white);
	color: var(--muted);
	font-size: 14px;
}

.pagination-wrap .page-numbers.current { background: var(--ink); border-color: var(--ink); color: var(--gold-2); }

.pagination-wrap a.page-numbers:hover { border-color: var(--gold); color: var(--ink); }

/* Search form */
.search-form { display: flex; gap: 10px; margin: 0 0 40px; }

.search-form input[type="search"] { flex: 1; }

.search-form .search-submit {
	padding: 14px 28px;
	border: 0;
	border-radius: 8px;
	background: var(--ink);
	color: var(--gold-2);
	font-size: 13px;
	letter-spacing: .14em;
	text-transform: uppercase;
	cursor: pointer;
}

/* Empty / 404 */
.empty-state { text-align: center; padding: 60px 0; color: var(--muted); }

.empty-actions { display: flex; justify-content: center; gap: 14px; margin-top: 26px; }

.code-404 {
	display: block;
	font-family: var(--font-display);
	font-size: 110px;
	line-height: 1;
	color: var(--gold);
	margin-bottom: 10px;
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .75s var(--ease), transform .75s var(--ease);
}

[data-reveal].is-revealed { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
	.primary-nav { display: none; }
	.nav-toggle { display: inline-flex; }
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.about-grid { grid-template-columns: 1fr; gap: 56px; }
	.about-media { max-width: 560px; margin-inline: auto; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
	.section { padding: 72px 0; }
	.topbar-meta { display: none; }
	.topbar-inner { justify-content: center; }
	.stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
	.stat:nth-child(3) { border-left: 0; }
	.services-grid { grid-template-columns: 1fr; }
	.feature-list { grid-template-columns: 1fr; }
	.cards-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; }
	.footer-bottom-inner { justify-content: center; text-align: center; padding-right: 0; padding-bottom: 56px; }
	.hero-prev { left: 12px; }
	.hero-next { right: 12px; }
	.btn-book { display: none; }
	.post-navigation { grid-template-columns: 1fr; }
	.nav-next { text-align: left; }
	.about-badge { right: 8px; }
	.about-media::before { inset: 16px -12px -16px 12px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
	[data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================
   Reservation wizard
   ========================================================= */
.rsv-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 40px;
	align-items: start;
}

.rsv-wizard {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-1);
	padding: 42px 44px 46px;
}

.hp-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.rsv-alert {
	background: #fbf0ef;
	border: 1px solid #e7c9c3;
	color: #9c3b2e;
	border-radius: 10px;
	padding: 14px 18px;
	margin-bottom: 28px;
	font-size: 14.5px;
}

/* Steps */
.wizard-steps {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	list-style: none;
	margin: 0 0 14px;
	padding: 0;
}

.wizard-step {
	display: flex;
	align-items: center;
	gap: 10px;
}

.step-dot {
	width: 34px;
	height: 34px;
	flex: none;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--muted);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 500;
	transition: all .3s var(--ease);
}

.wizard-step.is-active .step-dot {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--gold-2);
}

.wizard-step.is-done .step-dot {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--ink);
}

.step-label {
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--muted);
}

.wizard-step.is-active .step-label { color: var(--ink); }

.wizard-progress {
	height: 3px;
	border-radius: 3px;
	background: var(--mist);
	overflow: hidden;
}

.wizard-progress span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--gold), var(--gold-2));
	transition: width .45s var(--ease);
}

/* Panels */
.rsv-panel { display: none; padding-top: 32px; }

.rsv-panel.is-active {
	display: block;
	animation: rsv-fade .4s var(--ease);
}

@keyframes rsv-fade {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: none; }
}

.rsv-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px 24px;
}

.col-full { grid-column: 1 / -1; }

/* Fields */
.rsv-field label {
	display: block;
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #3a3d45;
	margin-bottom: 8px;
}

.rsv-field .req { color: var(--gold-deep); }

.rsv-field input[type="text"],
.rsv-field input[type="email"],
.rsv-field input[type="tel"],
.rsv-field input[type="date"],
.rsv-field input[type="time"],
.rsv-field input[type="number"],
.rsv-field select,
.rsv-field textarea {
	width: 100%;
	padding: 13px 15px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fdfdfc;
	font-family: inherit;
	font-size: 15px;
	color: var(--text);
	transition: border-color .25s, box-shadow .25s, background .25s;
}

.rsv-field select {
	appearance: none;
	padding-right: 42px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d7078' stroke-width='2' stroke-linecap='round'%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;
}

.rsv-field textarea { resize: vertical; min-height: 110px; }

.rsv-field input:focus,
.rsv-field select:focus,
.rsv-field textarea:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(200, 165, 88, .18);
	background: var(--white);
}

.rsv-field.has-error input,
.rsv-field.has-error select,
.rsv-field.has-error textarea {
	border-color: #cf6b5b;
	background: #fff8f7;
}

.field-error {
	display: block;
	color: #b3402f;
	font-size: 12.5px;
	margin-top: 6px;
}

.field-error:empty { display: none; }

/* Radios & checks as pills */
.rsv-radio-row { display: flex; gap: 12px; flex-wrap: wrap; }

.rsv-radio,
.rsv-check {
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 12px 18px;
	cursor: pointer;
	background: #fdfdfc;
	transition: border-color .25s, background .25s;
}

.rsv-radio:hover,
.rsv-check:hover { border-color: var(--gold); }

.rsv-radio:has(input:checked),
.rsv-check:has(input:checked) {
	border-color: var(--gold);
	background: rgba(200, 165, 88, .1);
}

.rsv-radio input,
.rsv-check input {
	accent-color: var(--gold-deep);
	width: 16px;
	height: 16px;
	margin: 0;
}

.rsv-radio span,
.rsv-check span {
	font-size: 14.5px;
	letter-spacing: .02em;
	text-transform: none;
	color: var(--text);
}

.rsv-checks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.rsv-agree .rsv-check { background: var(--paper); }

.rsv-agree a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }

.rsv-hint {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: var(--paper);
	border: 1px dashed var(--line);
	border-radius: 10px;
	padding: 16px 18px;
	color: var(--muted);
	font-size: 14px;
}

.rsv-hint .icon { color: var(--gold-deep); margin-top: 2px; }

/* Wizard nav */
.wizard-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	margin-top: 34px;
	padding-top: 26px;
	border-top: 1px solid var(--line);
}

/* Summary sidebar */
.rsv-summary {
	position: sticky;
	top: calc(var(--header-h) + 20px);
	background: var(--ink);
	color: var(--white);
	border-radius: var(--radius);
	padding: 30px 28px;
	box-shadow: var(--shadow-2);
}

.rsv-summary h3 {
	color: var(--gold-2);
	font-size: 22px;
	margin: 0 0 14px;
}

.rsv-summary-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rsv-summary-list li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 18px;
	padding: 11px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.rsv-summary-list span {
	font-size: 11.5px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .55);
	flex: none;
}

.rsv-summary-list strong {
	font-weight: 400;
	font-size: 14.5px;
	color: rgba(255, 255, 255, .92);
	text-align: right;
	overflow-wrap: anywhere;
}

.rsv-help {
	display: flex;
	gap: 12px;
	margin-top: 24px;
	align-items: flex-start;
}

.rsv-help .icon { color: var(--gold); margin-top: 3px; }

.rsv-help strong {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: var(--white);
}

.rsv-help a {
	display: block;
	color: var(--gold-2);
	font-size: 17px;
	letter-spacing: .03em;
}

.rsv-help a:hover { text-decoration: underline; }

.rsv-help small {
	display: block;
	color: rgba(255, 255, 255, .55);
	font-size: 12.5px;
}

/* Success panel */
.rsv-success {
	max-width: 740px;
	margin: 0 auto;
	background: var(--white);
	border-radius: var(--radius);
	border-top: 4px solid var(--gold);
	box-shadow: var(--shadow-2);
	padding: 58px 48px;
	text-align: center;
}

.rsv-success-icon {
	width: 68px;
	height: 68px;
	margin: 0 auto;
	border-radius: 50%;
	background: rgba(200, 165, 88, .14);
	color: var(--gold-deep);
	display: flex;
	align-items: center;
	justify-content: center;
}

.rsv-success-icon .icon { width: 30px; height: 30px; }

.rsv-success h2 { margin: 20px 0 6px; font-size: 32px; }

.rsv-ref { color: var(--muted); margin: 0; }

.rsv-ref strong {
	color: var(--ink);
	font-size: 18px;
	letter-spacing: .1em;
}

.rsv-success-list {
	list-style: none;
	max-width: 540px;
	margin: 28px auto;
	padding: 0;
	text-align: left;
}

.rsv-success-list li {
	display: flex;
	justify-content: space-between;
	gap: 22px;
	padding: 11px 0;
	border-bottom: 1px solid var(--line);
	font-size: 14.5px;
}

.rsv-success-list span {
	color: var(--muted);
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	flex: none;
	padding-top: 2px;
}

.rsv-success-list strong { font-weight: 500; text-align: right; overflow-wrap: anywhere; }

.rsv-success-note { color: var(--muted); font-size: 14.5px; max-width: 520px; margin: 0 auto 26px; }

/* Responsive */
@media (max-width: 1024px) {
	.rsv-layout { grid-template-columns: 1fr; }
	.rsv-summary { position: static; }
}

@media (max-width: 640px) {
	.rsv-wizard { padding: 28px 22px 32px; }
	.rsv-grid { grid-template-columns: 1fr; }
	.rsv-checks { grid-template-columns: 1fr; }
	.step-label { display: none; }
	.wizard-step.is-active .step-label { display: inline; }
	.rsv-success { padding: 42px 24px; }
}
