:root {
	--noir: #1a1715;
	--sand: #f4efe9;
	--cream: #faf7f3;
	--gold: #b08d57;
	--gold-soft: #c9ab7f;
	--muted: #8a8177;
	--line: rgba(176, 141, 87, 0.22);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Jost', sans-serif;
	font-weight: 300;
	color: var(--noir);
	background: var(--cream);
	line-height: 1.7;
	letter-spacing: 0.02em;
}

h1, h2, h3 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: 0.01em;
}

.eyebrow {
	font-family: 'Jost', sans-serif;
	font-weight: 400;
	font-size: 0.72rem;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: var(--gold);
}

.wrap {
	width: 90%;
	max-width: 1140px;
	margin: 0 auto;
}

/* Nav */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	padding: 1.5rem 0;
	transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
	background: rgba(250, 247, 243, 0.92);
	backdrop-filter: blur(12px);
	padding: 1rem 0;
	box-shadow: 0 1px 0 var(--line);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cream);
	transition: color 0.4s ease;
}

header.scrolled .brand {
	color: var(--noir);
}

.nav-links {
	display: flex;
	gap: 2.4rem;
	list-style: none;
	align-items: center;
}

.nav-links a {
	text-decoration: none;
	color: var(--cream);
	font-size: 0.82rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

header.scrolled .nav-links a {
	color: var(--noir);
}

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

.btn {
	display: inline-block;
	font-family: 'Jost', sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 0.9rem 2rem;
	border: 1px solid var(--gold);
	color: var(--gold);
	background: transparent;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.35s ease;
}

.btn:hover {
	background: var(--gold);
	color: var(--cream);
}

.nav-links a.btn:hover,
header.scrolled .nav-links a.btn:hover {
	color: var(--cream);
}

.btn-solid {
	background: var(--gold);
	color: var(--cream);
}

.btn-solid:hover {
	background: transparent;
	color: var(--gold);
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 6px;
	padding: 0;
}

.nav-toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--cream);
	transition: background 0.4s ease, transform 0.4s ease, opacity 0.3s ease;
}

header.scrolled .nav-toggle span {
	background: var(--noir);
}

/* Hero */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	color: var(--cream);
	background: linear-gradient(rgba(26, 23, 21, 0.55), rgba(26, 23, 21, 0.65)),
		url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-inner {
	max-width: 680px;
}

.hero .eyebrow {
	color: var(--gold-soft);
}

.hero h1 {
	font-size: clamp(3rem, 8vw, 5.5rem);
	margin: 1.2rem 0 1.5rem;
	font-weight: 400;
}

.hero p {
	font-size: 1.1rem;
	font-weight: 300;
	max-width: 500px;
	margin-bottom: 2.5rem;
	opacity: 0.9;
}

.hero-cta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Sections */
section {
	padding: 7rem 0;
}

.section-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 4rem;
}

.section-head h2 {
	font-size: clamp(2.2rem, 5vw, 3.2rem);
	margin: 1rem 0;
}

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

/* About */
.about {
	background: var(--sand);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.about-img {
	height: 520px;
	background: url('https://images.unsplash.com/photo-1522337660859-02fbefca4702?auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
}

.about-text .eyebrow {
	display: block;
	margin-bottom: 1rem;
}

.about-text h2 {
	font-size: clamp(2rem, 4vw, 2.8rem);
	margin-bottom: 1.5rem;
}

.about-text p {
	color: var(--muted);
	margin-bottom: 1.5rem;
}

/* Services */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.service {
	background: var(--cream);
	border: 1px solid var(--line);
	padding: 3rem 2.2rem;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 50px rgba(26, 23, 21, 0.08);
}

.service .num {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.4rem;
	color: var(--gold-soft);
	display: block;
	margin-bottom: 1rem;
}

.service h3 {
	font-size: 1.6rem;
	margin-bottom: 0.8rem;
}

.service p {
	color: var(--muted);
	font-size: 0.95rem;
	margin-bottom: 0;
}

/* Experience strip */
.strip {
	background: linear-gradient(rgba(26, 23, 21, 0.75), rgba(26, 23, 21, 0.75)),
		url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&w=1920&q=80') center/cover fixed no-repeat;
	color: var(--cream);
	text-align: center;
}

.strip h2 {
	font-size: clamp(2rem, 5vw, 3rem);
	max-width: 720px;
	margin: 0 auto 2rem;
	font-weight: 400;
}

/* Contact */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
}

.info-item {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--line);
}

.info-item:last-child {
	border-bottom: none;
}

.info-item .eyebrow {
	display: block;
	margin-bottom: 0.5rem;
}

.info-item p {
	font-size: 1.05rem;
}

.info-item a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

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

/* Smart hours list */
.hours-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hours-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.35rem 0.6rem;
	margin: 0 -0.6rem;
	border-radius: 4px;
	font-size: 1.05rem;
	line-height: 1.5;
}

.hours-row.is-today {
	font-weight: 500;
}

/* Today + currently open → soft sage/green */
.hours-row.hours-open {
	background: rgba(74, 124, 89, 0.14);
	color: #3a6349;
}

/* Today + closed now → soft red */
.hours-row.hours-closed {
	background: rgba(165, 68, 59, 0.12);
	color: #8f3b33;
}

/* Today with no computed status (e.g. "By Appointment Only") → neutral highlight, no badge */
.hours-row.is-today:not(.hours-open):not(.hours-closed) {
	background: rgba(0, 0, 0, 0.05);
}

.hours-badge {
	flex-shrink: 0;
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.18rem 0.6rem;
	border-radius: 20px;
	white-space: nowrap;
}

.hours-open .hours-badge {
	background: #4a7c59;
	color: #fff;
}

.hours-closed .hours-badge {
	background: #a5443b;
	color: #fff;
}

form {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}

form input,
form select,
form textarea {
	font-family: 'Jost', sans-serif;
	font-weight: 300;
	font-size: 0.95rem;
	padding: 0.9rem 0;
	border: none;
	border-bottom: 1px solid var(--line);
	background: transparent;
	color: var(--noir);
}

form input:focus,
form select:focus,
form textarea:focus {
	outline: none;
	border-bottom-color: var(--gold);
}

form textarea {
	resize: vertical;
	min-height: 90px;
}

/* Footer */
footer {
	background: var(--noir);
	color: var(--sand);
	padding: 4rem 0 2rem;
	text-align: center;
}

footer .brand {
	color: var(--sand);
	display: inline-block;
	margin-bottom: 1rem;
}

.footer-links {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 1.5rem 0;
	flex-wrap: wrap;
}

.footer-links a {
	color: var(--sand);
	text-decoration: none;
	font-size: 0.82rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

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

.copy {
	font-size: 0.78rem;
	opacity: 0.5;
	margin-top: 2rem;
	letter-spacing: 0.08em;
}

/* Back to top */
.to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 40;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--noir);
	border: 1px solid var(--gold);
	color: var(--gold);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px);
	transition: all 0.4s ease;
}

.to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.to-top:hover {
	background: var(--gold);
	color: var(--cream);
}

.to-top svg {
	width: 16px;
	height: 16px;
}

@media (max-width: 860px) {
	.to-top {
		bottom: 1.4rem;
		right: 1.4rem;
		width: 46px;
		height: 46px;
	}
}

/* Reveal */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.9s ease, transform 0.9s ease;
}

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

/* Responsive */
@media (max-width: 860px) {
	.nav-links {
		position: fixed;
		top: 0;
		right: 0;
		height: 100vh;
		width: 70%;
		max-width: 320px;
		background: var(--noir);
		flex-direction: column;
		justify-content: center;
		gap: 2.5rem;
		transform: translateX(100%);
		transition: transform 0.4s ease;
		z-index: 55;
	}

	.nav-links.open {
		transform: translateX(0);
	}

	.nav-links a {
		color: var(--cream) !important;
		font-size: 1rem;
	}

	.nav-toggle {
		display: flex;
		z-index: 60;
	}

	/* Hamburger bars stay cream while the menu panel is open (dark bg),
	   even on the scrolled header where they'd otherwise be dark. */
	header.scrolled .nav-toggle.open span {
		background: var(--cream);
	}

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

	.nav-toggle.open span:nth-child(2) {
		opacity: 0;
	}

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

	.about-grid,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.about-img {
		height: 380px;
		order: -1;
	}

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

	section {
		padding: 5rem 0;
	}

	.strip {
		background-attachment: scroll;
	}

	.hero-cta {
		flex-direction: column;
		align-items: stretch;
		gap: 0.9rem;
	}

	.hero-cta .btn {
		width: 100%;
		max-width: 360px;
		text-align: center;
	}
}

/* Booking form: honeypot + status */
.hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-status {
	font-size: 0.9rem;
	margin-top: 0.4rem;
	min-height: 1.2em;
}

.form-status.success {
	color: #4a7c59;
}

.form-status.error {
	color: #a5443b;
}
/* ---------------------------------------------------------------------- */
/* Ad banner (under hero) — only rendered when an active banner exists     */
/* ---------------------------------------------------------------------- */
.ad-banner {
	padding: 0;
	background: var(--sand);
	border-bottom: 1px solid var(--line);
}

/* Full-bleed: break out of the .wrap width limit so the image spans the
   entire viewport width, however wide the screen is. */
.ad-banner .wrap {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	display: block;
}

.ad-banner .wrap > * {
	display: block;
	width: 100%;
	margin: 0;
	line-height: 0;
}

.ad-banner img {
	display: block;
	width: 100%;
	height: auto;
	/* Banners can be uploaded at any aspect ratio (wide, tall, square).
	   Cap the rendered height so a tall/square image can't take over the
	   page. Use "contain" (not "cover") so nothing is ever cropped —
	   a banner that's too tall for the cap just shrinks to fit, centered,
	   on the section's own background instead of losing its edges. */
	max-height: 480px;
	object-fit: contain;
	object-position: center;
	margin: 0 auto;
}

@media (max-width: 640px) {
	.ad-banner img {
		max-height: 260px;
	}
}

.ad-banner-link {
	display: block;
	transition: opacity 0.3s ease;
}

.ad-banner-link:hover {
	opacity: 0.95;
}

/* Click-to-enlarge, used only when the banner has no outbound link */
.ad-banner-zoom {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	border: 0;
	background: none;
	cursor: zoom-in;
	transition: opacity 0.3s ease;
}

.ad-banner-zoom:hover {
	opacity: 0.95;
}

/* ---------------------------------------------------------------------- */
/* Shop gallery grid + lightbox                                           */
/* ---------------------------------------------------------------------- */
.gallery {
	background: var(--cream);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.gallery-item {
	position: relative;
	display: block;
	padding: 0;
	border: none;
	margin: 0;
	cursor: pointer;
	overflow: hidden;
	border-radius: 6px;
	aspect-ratio: 4 / 3;
	background: var(--sand);
	box-shadow: 0 4px 18px rgba(26, 23, 21, 0.06);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
	transform: scale(1.06);
}

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

.gallery-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.4rem 1rem 0.8rem;
	font-size: 0.85rem;
	color: var(--cream);
	text-align: left;
	background: linear-gradient(transparent, rgba(26, 23, 21, 0.72));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
	opacity: 1;
}

/* ---------------------------------------------------------------------- */
/* Advertisers grid                                                        */
/* ---------------------------------------------------------------------- */
.advertisers {
	background: var(--sand);
}

.advertisers-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.25rem;
}

.advertiser-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.75rem;
	padding: 1.75rem 1.25rem;
	background: var(--cream);
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 4px 18px rgba(26, 23, 21, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.advertiser-card:hover,
a.advertiser-card:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 10px 26px rgba(26, 23, 21, 0.12);
	outline: none;
}

.advertiser-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 72px;
}

.advertiser-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.advertiser-name {
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.advertiser-desc {
	font-size: 0.82rem;
	color: var(--muted);
}

@media (max-width: 900px) {
	.advertisers-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

/* Lightbox overlay */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(26, 23, 21, 0.92);
	padding: 4rem 1rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.lightbox[hidden] {
	display: none;
}

.lightbox.open {
	opacity: 1;
}

.lb-stage {
	margin: 0;
	max-width: 90vw;
	max-height: 82vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.lb-stage img {
	max-width: 90vw;
	max-height: 74vh;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* The banner dialog reuses the same lightbox: its artwork is a light,
   flat graphic (not a photo), so the heavy drop shadow just reads as a
   muddy halo against the dark overlay. Keep it flat instead. */
#bannerLbImg {
	box-shadow: none;
}

.lb-caption {
	color: var(--cream);
	font-size: 0.95rem;
	text-align: center;
	opacity: 0.85;
	max-width: 60ch;
}

.lb-close,
.lb-nav {
	position: absolute;
	background: rgba(250, 247, 243, 0.08);
	color: var(--cream);
	border: 1px solid rgba(250, 247, 243, 0.25);
	cursor: pointer;
	line-height: 1;
	transition: background 0.3s ease, border-color 0.3s ease;
}

.lb-close {
	top: 1.4rem;
	right: 1.4rem;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-size: 1.8rem;
}

.lb-nav {
	top: 50%;
	transform: translateY(-50%);
	width: 54px;
	height: 54px;
	border-radius: 50%;
	font-size: 2rem;
}

.lb-prev { left: 1.4rem; }
.lb-next { right: 1.4rem; }

.lb-close:hover,
.lb-nav:hover {
	background: var(--gold);
	border-color: var(--gold);
}

.lb-counter {
	position: absolute;
	bottom: 1.4rem;
	left: 50%;
	transform: translateX(-50%);
	color: var(--cream);
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	opacity: 0.7;
}

@media (max-width: 900px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.gallery-grid {
		grid-template-columns: 1fr;
	}
	.lb-nav {
		width: 44px;
		height: 44px;
		font-size: 1.6rem;
	}
	.lb-prev { left: 0.5rem; }
	.lb-next { right: 0.5rem; }
}