:root {
	--color-espresso-deep: #1a1310;
	--color-espresso: #2c201b;
	--color-charcoal: #241f1b;
	--color-ink: #312823;
	--color-muted: #70645a;
	--color-cream: #f6f0e7;
	--color-sand: #e5d6c0;
	--color-beige: #ccb394;
	--color-gold: #b68a58;
	--color-gold-soft: rgba(182, 138, 88, 0.18);
	--color-white: #ffffff;
	--color-border: rgba(49, 40, 35, 0.12);
	--color-border-light: rgba(255, 255, 255, 0.18);
	--shadow-soft: 0 24px 60px rgba(16, 10, 7, 0.12);
	--shadow-card: 0 18px 36px rgba(26, 19, 16, 0.08);
	--shadow-elevated: 0 28px 50px rgba(18, 10, 7, 0.22);
	--radius-sm: 16px;
	--radius-md: 24px;
	--radius-lg: 34px;
	--radius-pill: 999px;
	--space-1: clamp(0.75rem, 0.7rem + 0.15vw, 0.9rem);
	--space-2: clamp(1rem, 0.8rem + 0.55vw, 1.4rem);
	--space-3: clamp(1.5rem, 1.15rem + 1vw, 2.25rem);
	--space-4: clamp(2rem, 1.5rem + 1.6vw, 3.5rem);
	--space-5: clamp(3rem, 2.3rem + 2.4vw, 5rem);
	--space-6: clamp(4.5rem, 3rem + 4vw, 7rem);
	--container: min(1180px, calc(100% - 2rem));
	--container-wide: min(1320px, calc(100% - 2rem));
	--header-height: 5.4rem;
	--announcement-height: 2.75rem;
	--chrome-height: calc(var(--header-height) + var(--announcement-height));
	--transition-fast: 180ms ease;
	--transition-base: 300ms ease;
	--transition-slow: 550ms cubic-bezier(0.19, 1, 0.22, 1);
	--font-heading: "Cormorant Garamond", Georgia, serif;
	--font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--color-ink);
	background: var(--color-cream);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition-fast), transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.interactive-slide {
	position: relative;
	display: inline-flex;
	align-items: center;
	vertical-align: top;
	white-space: nowrap;
}

.interactive-slide__viewport {
	display: block;
	overflow: hidden;
	height: 1.12em;
	line-height: 1.12;
}

.interactive-slide__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transform: translateY(0);
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.interactive-slide__line {
	display: block;
	white-space: nowrap;
	line-height: 1.12;
}

.interactive-slide:hover .interactive-slide__inner,
.interactive-slide:focus-visible .interactive-slide__inner {
	transform: translateY(-50%);
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	border: 0;
	background: none;
	padding: 0;
}

p,
ul,
ol,
h1,
h2,
h3,
h4 {
	margin: 0;
}

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

main {
	display: block;
}

section[id] {
	scroll-margin-top: calc(var(--chrome-height) + 1rem);
}

.container {
	width: var(--container);
	margin-inline: auto;
}

.section {
	padding-block: var(--space-6);
	position: relative;
}

.section__header {
	display: grid;
	gap: 1rem;
	max-width: 40rem;
	margin-bottom: var(--space-4);
}

.section__header--center {
	text-align: center;
	margin-inline: auto;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.76rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--color-gold);
}

.eyebrow::before {
	content: "";
	width: 2.75rem;
	height: 1px;
	background: currentColor;
	opacity: 0.65;
}

.eyebrow--plain::before {
	display: none;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-heading);
	line-height: 0.95;
	letter-spacing: -0.03em;
	font-weight: 600;
}

h1 {
	font-size: clamp(3.3rem, 8vw, 6.5rem);
}

h2 {
	font-size: clamp(2.35rem, 4.8vw, 4rem);
}

h3 {
	font-size: clamp(1.6rem, 2.3vw, 2.1rem);
}

h4 {
	font-size: 1.35rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	min-height: 3.4rem;
	padding: 0.95rem 1.4rem;
	border-radius: var(--radius-pill);
	border: 1px solid transparent;
	font-size: 0.96rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	cursor: pointer;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	box-shadow: var(--shadow-card);
}

.button--primary {
	background: linear-gradient(135deg, #d2ad78 0%, #a97849 100%);
	color: var(--color-white);
}

.button--secondary {
	background: var(--color-white);
	color: var(--color-espresso);
	border-color: rgba(255, 255, 255, 0.3);
}

.button--ghost {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.28);
	color: var(--color-white);
	backdrop-filter: blur(12px);
}

.button--full {
	width: 100%;
}

.pill {
	display: inline-flex;
	align-items: center;
	border-radius: var(--radius-pill);
	padding: 0.5rem 0.85rem;
	font-size: 0.85rem;
	font-weight: 700;
	background: var(--color-gold-soft);
	color: var(--color-espresso);
}

.pill--soft {
	background: rgba(44, 32, 27, 0.08);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 3px solid rgba(182, 138, 88, 0.45);
	outline-offset: 3px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	clip: auto;
	width: auto;
	height: auto;
	margin: 1rem;
	padding: 1rem 1.25rem;
	background: var(--color-ink);
	color: var(--color-white);
	z-index: 9999;
}

.site {
	overflow: clip;
}

.site-chrome {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.admin-bar .site-chrome {
	top: 32px;
}

.announcement-bar {
	min-height: var(--announcement-height);
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(17, 11, 8, 0.34);
	color: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(8px);
}

.site-chrome.is-scrolled .announcement-bar,
.site-header--solid + .announcement-bar {
	background: rgba(246, 240, 231, 0.92);
	color: var(--color-espresso);
	border-bottom-color: rgba(44, 32, 27, 0.08);
}

.announcement-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 700;
}

.announcement-bar a {
	color: var(--color-gold);
}

.site-header {
	min-height: var(--header-height);
	display: flex;
	align-items: center;
	border-bottom: 1px solid transparent;
	transition: background-color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.site-header.is-scrolled,
.site-header--solid {
	background: rgba(246, 240, 231, 0.88);
	border-bottom-color: rgba(44, 32, 27, 0.08);
	backdrop-filter: blur(20px);
	box-shadow: 0 12px 30px rgba(26, 19, 16, 0.08);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 2rem;
}

.site-branding {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	min-width: 0;
}

.site-branding__logo img,
.custom-logo-link img {
	width: auto;
	max-height: 58px;
}

.site-branding__text {
	display: grid;
	gap: 0.2rem;
}

.site-title {
	font-family: var(--font-heading);
	font-size: clamp(1.85rem, 2vw, 2.3rem);
	line-height: 1;
}

.site-tagline {
	font-size: 0.86rem;
	color: var(--color-muted);
}

.site-header--overlay .site-title,
.site-header--overlay .menu--primary a,
.site-header--overlay .site-tagline,
.site-header--overlay .menu-toggle {
	color: var(--color-white);
}

.site-header.is-scrolled .site-title,
.site-header.is-scrolled .site-tagline,
.site-header.is-scrolled .menu--primary a,
.site-header.is-scrolled .menu-toggle,
.site-header.is-scrolled .site-header__cta,
.site-header--solid .site-title,
.site-header--solid .site-tagline,
.site-header--solid .menu--primary a,
.site-header--solid .menu-toggle,
.site-header--solid .site-header__cta {
	color: var(--color-espresso);
}

.site-header.is-scrolled .site-header__cta,
.site-header--solid .site-header__cta {
	background: rgba(255, 255, 255, 0.82);
	border-color: rgba(49, 40, 35, 0.12);
}

.primary-navigation {
	justify-self: center;
}

.menu {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding-block: 0.2rem;
	font-size: 0.95rem;
	font-weight: 700;
}

.menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.2rem;
	height: 1px;
	background: currentColor;
	transform: scaleX(0.4);
	transform-origin: center;
	opacity: 0;
	transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.menu a:hover::after,
.menu a:focus-visible::after {
	transform: scaleX(1);
	opacity: 0.6;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 0.75rem;
	padding: 0.8rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-pill);
	font-size: 0.92rem;
	font-weight: 800;
	color: var(--color-white);
	background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .menu-toggle,
.site-header--solid .menu-toggle {
	border-color: rgba(49, 40, 35, 0.14);
	background: rgba(255, 255, 255, 0.64);
}

.menu-toggle__bars {
	display: inline-grid;
	gap: 0.32rem;
}

.menu-toggle__bars span {
	width: 1.1rem;
	height: 1px;
	background: currentColor;
}

.mobile-menu {
	background: rgba(24, 18, 14, 0.96);
	color: var(--color-white);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__inner {
	display: grid;
	gap: 1.5rem;
	padding-block: 1.25rem 1.75rem;
}

.menu--mobile {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.9rem;
}

.menu--mobile a {
	font-size: 1.2rem;
}

.mobile-menu__meta {
	display: grid;
	gap: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.82);
}

.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: flex-end;
	padding-top: calc(var(--chrome-height) + 4rem);
	padding-bottom: var(--space-5);
	color: var(--color-white);
	background: var(--color-espresso-deep);
}

.hero__media,
.hero__overlay {
	position: absolute;
	inset: 0;
}

.hero__media {
	background-image: var(--hero-image);
	background-size: cover;
	background-position: center;
	transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.06);
	will-change: transform;
}

.hero__overlay {
	background:
		radial-gradient(circle at 75% 25%, rgba(196, 145, 84, 0.25), transparent 28%),
		linear-gradient(180deg, rgba(17, 11, 8, 0.2) 0%, rgba(17, 11, 8, 0.58) 42%, rgba(17, 11, 8, 0.88) 100%);
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
	gap: var(--space-4);
	align-items: end;
}

.hero__content {
	display: grid;
	gap: 1.35rem;
	max-width: 44rem;
}

.hero__subtitle {
	max-width: 38rem;
	font-size: clamp(1rem, 1.1rem + 0.35vw, 1.3rem);
	color: rgba(255, 255, 255, 0.78);
}

.hero__actions,
.contact-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero__panel {
	display: grid;
	gap: 1.2rem;
	padding: 1.6rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-lg);
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow-elevated);
}

.hero__panel-label {
	font-size: 0.83rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
}

.hero__panel-list {
	display: grid;
	gap: 1rem;
}

.hero__panel-list li {
	display: grid;
	gap: 0.25rem;
}

.hero__panel-list strong {
	font-size: 1.05rem;
}

.hero__panel-list span {
	color: rgba(255, 255, 255, 0.74);
}

.hero__scroll-wrap {
	position: relative;
	z-index: 1;
	width: var(--container);
	margin: 0 auto;
}

.hero__scroll {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	margin-top: var(--space-4);
	font-size: 0.88rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.76);
}

.hero__scroll::before {
	content: "";
	width: 3rem;
	height: 1px;
	background: currentColor;
}

.section--story {
	background:
		radial-gradient(circle at top right, rgba(182, 138, 88, 0.08), transparent 28%),
		var(--color-cream);
}

.story-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: clamp(1.75rem, 3vw, 3.5rem);
	align-items: center;
}

.story__media {
	position: relative;
}

.story__media img {
	width: 100%;
	min-height: clamp(24rem, 48vw, 38rem);
	object-fit: cover;
	object-position: center top;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
}

.story__content {
	display: grid;
	gap: 1.35rem;
	max-width: 40rem;
}

.story__content h2 {
	font-size: clamp(2.1rem, 3.5vw, 3.5rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
	max-width: 14ch;
	margin: 0;
}

.story__lead {
	display: grid;
	gap: 1rem;
	max-width: 34rem;
}

.story__lead p {
	margin: 0;
	font-size: clamp(1rem, 1rem + 0.2vw, 1.12rem);
	line-height: 1.8;
	color: var(--color-ink);
}

.story__highlights {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.1rem;
	margin-top: 0.85rem;
}

.story__highlight {
	padding: 1.4rem;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(49, 40, 35, 0.06);
	box-shadow: var(--shadow-card);
}

.story__highlight h3 {
	margin: 0 0 0.45rem;
	font-size: 1.05rem;
}

.story__highlight p {
	margin: 0;
	line-height: 1.65;
	color: var(--color-muted);
}

.section--dark {
	background:
		radial-gradient(circle at top left, rgba(182, 138, 88, 0.18), transparent 24%),
		var(--color-charcoal);
	color: var(--color-white);
}

.section--dark .section__header p,
.section--dark .value-card p {
	color: rgba(255, 255, 255, 0.74);
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.4rem;
	max-width: 58rem;
	margin-inline: auto;
}

.value-card {
	padding: 1.75rem;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: grid;
	gap: 1rem;
	transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.value-card:hover,
.value-card:focus-within {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.16);
	box-shadow: var(--shadow-elevated);
}

.value-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: rgba(182, 138, 88, 0.16);
	color: var(--color-beige);
	font-weight: 800;
}

.section--featured {
	background:
		linear-gradient(180deg, rgba(18, 11, 8, 0.02) 0%, rgba(182, 138, 88, 0.08) 100%),
		#fbf7f0;
}

.featured-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: var(--space-4);
	align-items: start;
}

.featured-copy {
	display: grid;
	gap: 1.25rem;
	position: sticky;
	top: calc(var(--chrome-height) + 2rem);
}

.featured-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.feature-card {
	display: grid;
	gap: 1rem;
	min-height: 100%;
	padding: 1.6rem;
	border-radius: var(--radius-md);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 239, 228, 0.94));
	border: 1px solid rgba(49, 40, 35, 0.08);
	box-shadow: var(--shadow-card);
	transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.feature-card:hover,
.feature-card:focus-within {
	transform: translateY(-5px);
	box-shadow: var(--shadow-soft);
	border-color: rgba(182, 138, 88, 0.24);
}

.feature-card__category {
	font-size: 0.84rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--color-gold);
}

.feature-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid rgba(49, 40, 35, 0.08);
}

.feature-card__price {
	font-size: 1rem;
	font-weight: 800;
}

.feature-card__footer a {
	font-size: 0.92rem;
	font-weight: 800;
	color: var(--color-gold);
}

.section--menu {
	background: #fffaf4;
}

.menu-grid {
	column-count: 2;
	column-gap: 1.4rem;
}

.menu-group {
	display: grid;
	gap: 1.4rem;
	padding: 1.6rem;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(49, 40, 35, 0.08);
	box-shadow: var(--shadow-card);
	transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
	align-self: start;
	break-inside: avoid;
	margin: 0 0 1.4rem;
	width: 100%;
}

.menu-group:hover,
.menu-group:focus-within {
	transform: translateY(-4px);
	box-shadow: var(--shadow-soft);
	border-color: rgba(182, 138, 88, 0.2);
}

.menu-group__header {
	display: grid;
	gap: 0.8rem;
}

.menu-group__list {
	display: grid;
	gap: 1rem;
}

.menu-item-card {
	display: grid;
	gap: 0.55rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(49, 40, 35, 0.08);
}

.menu-item-card:first-child {
	padding-top: 0;
	border-top: 0;
}

.menu-item-card__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 0.8rem;
}

.menu-item-card__top h4 {
	margin: 0;
	font-size: clamp(1.55rem, 1.4rem + 0.25vw, 2rem);
	line-height: 0.98;
	letter-spacing: -0.03em;
}

.menu-item-card__copy {
	display: grid;
	gap: 0.35rem;
}

.menu-item-card__copy p {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}

.menu-item-card__price {
	align-self: start;
	white-space: nowrap;
	font-weight: 800;
	color: var(--color-espresso);
	font-size: 1.05rem;
	padding-top: 0.2rem;
}

.section--gallery {
	background:
		radial-gradient(circle at 15% 15%, rgba(182, 138, 88, 0.16), transparent 22%),
		linear-gradient(180deg, #201915 0%, #171210 100%);
	color: var(--color-white);
}

.section--gallery .section__header p {
	color: rgba(255, 255, 255, 0.74);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
	align-items: start;
}

.gallery-grid > * {
	margin: 0;
}

.gallery-card,
.gallery-card--large,
.gallery-card--wide,
.gallery-card--tall,
.gallery-card--standard {
	position: relative;
	grid-column: span 1;
	grid-row: auto;
	aspect-ratio: 4 / 3;
	min-height: 0;
	gap: 1.2rem;
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-elevated);
}

.gallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
	transition: transform var(--transition-slow), filter var(--transition-base);
}

.gallery-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 0.6rem;
	padding: 1.5rem;
	background: linear-gradient(180deg, transparent 20%, rgba(18, 11, 8, 0.85) 100%);
}

.gallery-card__overlay p {
	color: rgba(255, 255, 255, 0.74);
}

.gallery-card:hover img,
.gallery-card:focus-within img {
	transform: scale(1.08);
	filter: saturate(1.08);
}

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

.location-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.4rem;
}

.location-card {
	display: grid;
	grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(49, 40, 35, 0.08);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.location-card:hover,
.location-card:focus-within {
	transform: translateY(-4px);
	box-shadow: var(--shadow-soft);
	border-color: rgba(182, 138, 88, 0.22);
}

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

.location-card__body {
	display: grid;
	gap: 0.9rem;
	padding: 1.6rem;
}

.location-card__note,
.location-card__address {
	color: var(--color-muted);
}

.location-card__phone {
	font-weight: 800;
	color: var(--color-gold);
}

.location-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 0.4rem;
}

.section--hours {
	background:
		linear-gradient(135deg, rgba(27, 21, 17, 0.98), rgba(41, 31, 25, 0.98)),
		var(--color-charcoal);
	color: var(--color-white);
}

.hours-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: var(--space-4);
	align-items: center;
}

.hours-copy {
	display: grid;
	gap: 1rem;
}

.hours-card {
	padding: 1.7rem;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	display: grid;
	gap: 1rem;
}

.hours-card__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-card__row:last-of-type {
	padding-bottom: 0;
	border-bottom: 0;
}

.hours-card__row span {
	color: rgba(255, 255, 255, 0.7);
}

.hours-card__note {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.94rem;
}

.section--contact {
	background:
		radial-gradient(circle at top center, rgba(182, 138, 88, 0.18), transparent 35%),
		linear-gradient(180deg, #f7efe3 0%, #f2e6d6 100%);
}

.contact-cta {
	padding: clamp(2rem, 3vw, 3rem);
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, rgba(44, 32, 27, 0.96), rgba(23, 18, 15, 0.96));
	color: var(--color-white);
	box-shadow: var(--shadow-elevated);
	display: grid;
	gap: 1.25rem;
	text-align: center;
}

.contact-cta > * {
	max-width: 48rem;
	margin-inline: auto;
}

.contact-cta__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	width: 100%;
}

.contact-cta__meta-item {
	min-width: 13rem;
	padding: 1rem 1.15rem;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: grid;
	gap: 0.2rem;
}

.contact-cta__meta-item span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.88rem;
}

.site-footer {
	background: #171210;
	color: rgba(255, 255, 255, 0.82);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(12rem, 0.78fr) minmax(12rem, 0.9fr);
	gap: 2rem;
	padding-block: var(--space-5);
}

.site-footer__brand,
.site-footer__nav,
.site-footer__contact,
.site-footer__social {
	display: grid;
	gap: 1rem;
	align-content: start;
}

.site-footer__title {
	font-family: var(--font-heading);
	font-size: 2rem;
	line-height: 1;
	color: var(--color-white);
}

.site-footer__line {
	color: var(--color-sand);
	font-size: 1rem;
}

.site-footer__heading {
	font-size: 1.35rem;
	color: var(--color-white);
}

.menu--footer,
.social-links {
	display: grid;
	gap: 0.5rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu--footer {
	grid-template-columns: repeat(2, minmax(0, max-content));
	column-gap: 1.6rem;
	row-gap: 0.45rem;
	align-content: start;
}

.menu--footer a,
.social-links a {
	color: rgba(255, 255, 255, 0.76);
}

.menu--footer a.interactive-slide {
	display: inline-block;
}

.menu--footer a.interactive-slide .interactive-slide__viewport {
	height: auto;
	line-height: inherit;
	overflow: visible;
}

.menu--footer a.interactive-slide .interactive-slide__inner {
	display: block;
	transform: none !important;
	transition: none;
}

.menu--footer a.interactive-slide .interactive-slide__line + .interactive-slide__line {
	display: none;
}

.site-footer__location {
	display: grid;
	gap: 0.15rem;
}

.site-footer__location h3 {
	font-size: 1.1rem;
	color: var(--color-white);
	margin: 0;
}

.site-footer__location p {
	margin: 0;
}

.site-footer__location a {
	color: var(--color-gold);
}

.social-links__monogram {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.9rem;
	height: 1.9rem;
	margin-right: 0.7rem;
	border-radius: 50%;
	background: rgba(182, 138, 88, 0.18);
	color: var(--color-sand);
	font-size: 0.82rem;
	font-weight: 800;
}

.cursor-dot {
	position: fixed;
	top: 0;
	left: 0;
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 50%;
	background: rgba(210, 173, 120, 0.95);
	box-shadow: 0 0 0 0.45rem rgba(210, 173, 120, 0.12);
	pointer-events: none;
	z-index: 2000;
	opacity: 0;
	transform: translate3d(-999px, -999px, 0);
	margin-left: -0.3rem;
	margin-top: -0.3rem;
	transition: opacity 180ms ease, width 220ms ease, height 220ms ease, margin 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.cursor-dot.is-visible {
	opacity: 1;
}

.cursor-dot.is-active {
	width: 0.9rem;
	height: 0.9rem;
	margin-left: -0.45rem;
	margin-top: -0.45rem;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 0 0 0.65rem rgba(210, 173, 120, 0.18);
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 1rem;
	font-size: 0.88rem;
}

.site-main--inner {
	padding-top: 0;
}

.inner-hero {
	padding-block: calc(var(--chrome-height) + 3rem) var(--space-4);
	background:
		radial-gradient(circle at top center, rgba(182, 138, 88, 0.16), transparent 28%),
		var(--color-cream);
}

.inner-hero--compact {
	padding-top: calc(var(--chrome-height) + 2rem);
}

.inner-hero__inner {
	display: grid;
	gap: 1rem;
	max-width: 42rem;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.25rem;
}

.post-card,
.single-entry,
.empty-state {
	background: rgba(255, 255, 255, 0.92);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(49, 40, 35, 0.08);
	box-shadow: var(--shadow-card);
	overflow: hidden;
}

.post-card {
	display: grid;
}

.post-card__media img,
.single-entry__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__body,
.single-entry__content,
.empty-state {
	padding: 1.5rem;
}

.post-card__body {
	display: grid;
	gap: 0.85rem;
}

.post-card__meta {
	font-size: 0.84rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--color-gold);
}

.single-entry {
	max-width: 52rem;
	margin-inline: auto;
}

.single-entry__content {
	display: grid;
	gap: 1rem;
}

.single-entry__content > * {
	max-width: 100%;
}

.single-entry__content p,
.single-entry__content li {
	color: var(--color-ink);
}

.single-entry__content ul,
.single-entry__content ol {
	padding-left: 1.2rem;
	list-style: disc;
}

.single-entry__menu-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.empty-state {
	display: grid;
	gap: 0.8rem;
	max-width: 38rem;
}

.pagination-wrap {
	grid-column: 1 / -1;
}

.navigation.posts-navigation .nav-links {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

.widget {
	padding: 1rem 1.1rem;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.widget-title {
	margin-bottom: 0.75rem;
	font-size: 1.1rem;
	color: var(--color-white);
}

.js-ready [data-reveal] {
	opacity: 0;
	transform: translateY(2rem);
	transition: opacity 800ms var(--transition-slow), transform 800ms var(--transition-slow);
	transition-delay: var(--reveal-delay, 0ms);
}

.js-ready [data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1100px) {
	.featured-grid,
	.hours-grid,
	.story-grid,
	.hero__inner,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.story__content {
		max-width: none;
	}

	.story__content h2,
	.story__lead {
		max-width: none;
	}

	.featured-copy {
		position: static;
	}

	.featured-cards,
	.location-grid {
		grid-template-columns: 1fr;
	}

	.menu-grid {
		column-count: 1;
	}
}

@media (max-width: 900px) {
	.primary-navigation,
	.site-header__cta {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.story__highlights,
	.value-grid {
		grid-template-columns: 1fr;
	}

	.story__media img {
		min-height: 22rem;
	}

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

	.location-card {
		grid-template-columns: 1fr;
	}

	.site-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 782px) {
	:root {
		--header-height: 4.85rem;
		--announcement-height: 3rem;
	}

	.admin-bar .site-chrome {
		top: 46px;
	}

	.announcement-bar__inner,
	.site-header__inner,
	.hours-card__row {
		gap: 0.8rem;
	}

	.announcement-bar__inner {
		flex-direction: column;
		align-items: flex-start;
		padding-block: 0.55rem;
	}

	.hero {
		padding-top: calc(var(--chrome-height) + 2rem);
	}

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

	.gallery-card,
	.gallery-card--large,
	.gallery-card--wide,
	.gallery-card--tall,
	.gallery-card--standard {
		aspect-ratio: 4 / 3;
	}

	.hero__panel,
	.contact-cta {
		padding: 1.4rem;
	}

	.contact-cta__meta {
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	:root {
		--container: min(100% - 1.2rem, 100%);
	}

	.hero__actions,
	.contact-cta__actions,
	.location-card__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.button {
		width: 100%;
	}

	.site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.site-branding {
		min-width: 0;
	}

	.site-title {
		font-size: 1.6rem;
	}

	.gallery-card {
		min-height: 18rem;
	}
}

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

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

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

	.interactive-slide__inner {
		transform: none !important;
		transition: none !important;
	}

	.cursor-dot {
		display: none !important;
	}
}
/* ===== CLEAN HERO VIDEO FIX ===== */

.hero-video-section {
	position: relative;
}

.hero-video-section .hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-video-section video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.hero-video-section .hero-media__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
	z-index: 2;
}

/* FIX CLICK ISSUE */
.hero-video-section * {
	pointer-events: none;
}

.hero-video-section .hero__content,
.hero-video-section .hero__actions,
.hero-video-section .button {
	pointer-events: auto;
	position: relative;
	z-index: 5;
}

/* FIX MARQUEE (DO NOT BLOCK BUTTON) */
.hero-marquee {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	z-index: 2;
	pointer-events: none;
}

.hero-marquee__track {
	display: flex;
	gap: 3rem;
	animation: marquee 25s linear infinite;
}

.hero-marquee span {
	font-size: clamp(4rem, 12vw, 10rem);
	color: rgba(255,255,255,0.85);
	white-space: nowrap;
}

@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
/* ===== FIXES FOR LOGO OVERLAP + TEXT SIZE + MENU OVERLAP ===== */

/* Fix logo image max-height to prevent overflow */
.site-branding__logo img,
.custom-logo-link img {
	max-height: 48px;
	width: auto;
	object-fit: contain;
}

/* Fix site title text size on mobile - prevent running over logo */
@media (max-width: 640px) {
	.site-title {
		font-size: 1.25rem !important;
		line-height: 1.2;
	}
	
	.site-tagline {
		font-size: 0.7rem;
	}
	
	.site-branding {
		gap: 0.5rem;
		max-width: 60%;
	}
	
	.site-branding__logo img,
	.custom-logo-link img {
		max-height: 40px;
	}
}

/* Fix hero section overlap on mobile - prevent "See Our Menu" overlapping logo */
@media (max-width: 900px) {
	.hero__inner {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding-top: 1rem;
	}
	
	.hero {
		padding-top: calc(var(--chrome-height) + 2rem);
		min-height: auto;
		padding-bottom: var(--space-4);
	}
	
	.hero__content {
		gap: 0.75rem;
	}
	
	.hero__actions .button {
		font-size: 0.85rem;
		padding: 0.7rem 1.2rem;
		min-height: auto;
	}
}

/* Ensure site chrome doesn't cause overlap on scroll */
.site-chrome {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: transparent;
}

/* Fix header inner spacing on mobile */
@media (max-width: 640px) {
	.site-header__inner {
		gap: 0.75rem;
		padding-block: 0.5rem;
	}
	
	.site-header__actions {
		gap: 0.4rem;
	}
	
	.menu-toggle {
		padding: 0.5rem 0.75rem;
	}
	
	.menu-toggle__label {
		font-size: 0.8rem;
	}
}

/* Prevent horizontal scrolling from menu or logo overflow */
html,
body {
	overflow-x: hidden;
	width: 100%;
}

.site {
	overflow-x: hidden;
	max-width: 100%;
}

/* Fix any hero button overlap with scrolling elements */
.hero__scroll-wrap {
	margin-top: 1rem;
}

.hero__scroll {
	margin-top: 1rem;
}
/* ===== CRITICAL FIXES FOR LOGO + TEXT + MARQUEE OVERLAP ===== */

/* Fix marquee position - keep it at bottom, don't overlap content */
.hero-marquee {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	pointer-events: none;
	overflow: hidden;
	height: auto;
	max-height: 15vh;
}

.hero-marquee__track {
	display: flex;
	gap: 2rem;
	animation: marquee 20s linear infinite;
	white-space: nowrap;
}

.hero-marquee span {
	font-size: clamp(1.8rem, 8vw, 4rem);
	color: rgba(255,255,255,0.75);
	font-weight: 600;
	letter-spacing: 0.05em;
}

/* Fix hero content area - ensure it doesn't get pushed down by marquee */
.hero__content-wrap {
	position: relative;
	z-index: 3;
	padding-bottom: 80px; /* space for marquee */
}

/* Fix logo size and prevent text overlap */
.site-branding {
	max-width: 70%;
	flex-shrink: 1;
}

.site-branding__logo img,
.custom-logo-link img {
	max-height: 50px !important;
	width: auto !important;
}

.site-title {
	font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.site-tagline {
	font-size: 0.7rem !important;
	white-space: nowrap;
}

/* Mobile-specific fixes */
@media (max-width: 768px) {
	.site-branding {
		max-width: 65%;
	}
	
	.site-title {
		font-size: 1rem !important;
	}
	
	.site-tagline {
		font-size: 0.6rem !important;
	}
	
	.hero__title {
		font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
		line-height: 1.1 !important;
	}
	
	.hero__subtitle {
		font-size: 0.9rem !important;
	}
	
	.hero__actions .button {
		padding: 0.6rem 1.2rem !important;
		font-size: 0.85rem !important;
	}
	
	.hero-marquee span {
		font-size: 1.4rem !important;
	}
	
	.hero__content-wrap {
		padding-bottom: 60px;
	}
}

/* Fix header overlap on scroll */
.site-header__inner {
	flex-wrap: nowrap;
	gap: 0.5rem;
}

@media (max-width: 480px) {
	.site-header__actions {
		gap: 0.3rem;
	}
	
	.menu-toggle__label {
		display: none;
	}
	
	.menu-toggle {
		padding: 0.4rem 0.6rem;
	}
	
	.button--ghost.site-header__cta {
		padding: 0.4rem 0.8rem;
		font-size: 0.75rem;
	}
}
/* ===== EMERGENCY FIXES: TEXT SIZE + LOGO OVERLAP ===== */

/* Force site title to be small on all screens */
.site-title {
	font-size: 1.4rem !important;
	line-height: 1.2 !important;
	white-space: nowrap;
}

.site-tagline {
	font-size: 0.7rem !important;
	line-height: 1.2 !important;
}

/* Limit logo image height */
.site-branding__logo img,
.custom-logo-link img {
	max-height: 45px !important;
	width: auto !important;
}

/* Prevent header text from wrapping or overflowing */
.site-branding {
	max-width: 65%;
	flex-shrink: 1;
	overflow: hidden;
}

/* Fix hero title size - much smaller on mobile */
.hero__title {
	font-size: clamp(1.8rem, 5vw, 3rem) !important;
	line-height: 1.15 !important;
}

.hero__subtitle {
	font-size: 0.9rem !important;
	line-height: 1.4 !important;
}

/* Fix marquee - reduce text size and ensure no overlap */
.hero-marquee {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	pointer-events: none;
	overflow: hidden;
}

.hero-marquee span {
	font-size: clamp(1.2rem, 5vw, 2.5rem) !important;
	opacity: 0.7;
}

/* Mobile-specific overrides */
@media (max-width: 768px) {
	.site-title {
		font-size: 1rem !important;
	}
	
	.site-tagline {
		font-size: 0.55rem !important;
	}
	
	.site-branding__logo img,
	.custom-logo-link img {
		max-height: 35px !important;
	}
	
	.hero__title {
		font-size: 1.6rem !important;
	}
	
	.hero__subtitle {
		font-size: 0.8rem !important;
	}
	
	.site-header__inner {
		gap: 0.5rem !important;
	}
	
	.button--ghost.site-header__cta {
		padding: 0.3rem 0.7rem !important;
		font-size: 0.7rem !important;
	}
}

/* Extra small screens */
@media (max-width: 480px) {
	.site-title {
		font-size: 0.85rem !important;
	}
	
	.site-tagline {
		display: none;
	}
	
	.site-branding__logo img,
	.custom-logo-link img {
		max-height: 30px !important;
	}
}
/* ===== HERO TITLE FIX: less bold, smaller ===== */
.hero__title {
	font-size: clamp(2rem, 6vw, 3.5rem) !important;
	font-weight: 500 !important; /* lighter than before */
	line-height: 1.2 !important;
	letter-spacing: -0.02em !important;
}

/* Optional: if you want even lighter on mobile */
@media (max-width: 768px) {
	.hero__title {
		font-size: 1.8rem !important;
		font-weight: 500 !important;
	}
}

/* ===== MARQUEE: much bigger text, no stars, smooth ===== */
.hero-marquee {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	pointer-events: none;
	overflow: hidden;
	padding-block: 0.5rem;
	background: linear-gradient(90deg, transparent, rgba(0,0,0,0.2), transparent);
}

/* ===== HEADER LOGO REFRESH ===== */
:root {
	--header-height: 9.75rem;
}

.site-branding__logo,
.custom-logo-link {
	display: flex;
	align-items: center;
}

.custom-logo-link {
	line-height: 0;
}

.site-branding__logo img,
.custom-logo-link img {
	max-height: 8.5rem !important;
	width: auto !important;
}

@media (max-width: 1024px) {
	:root {
		--header-height: 7.25rem;
	}

	.site-branding__logo img,
	.custom-logo-link img {
		max-height: 6.25rem !important;
	}
}

@media (max-width: 782px) {
	:root {
		--header-height: 6rem;
	}

	.site-branding__logo img,
	.custom-logo-link img {
		max-height: 4.75rem !important;
	}
}

@media (max-width: 480px) {
	:root {
		--header-height: 5.25rem;
	}

	.site-branding__logo img,
	.custom-logo-link img {
		max-height: 4rem !important;
	}
}

.hero-marquee__track {
	display: flex;
	gap: 3rem;
	animation: marquee 18s linear infinite;
	white-space: nowrap;
}

.hero-marquee span {
	font-size: clamp(3rem, 12vw, 7rem) !important;
	font-weight: 700 !important;
	color: rgba(255,255,255,0.85);
	letter-spacing: 0.1em;
	text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Make marquee animation smooth and continuous */
@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Adjust marquee track width for seamless loop */
.hero-marquee__track {
	width: fit-content;
}

/* Remove any extra spacing that could cause gaps */
.hero-marquee span {
	display: inline-block;
}
/* ===== FIX MARQUEE: full height, slower scroll, no cutoff ===== */

/* Make marquee container tall enough to show full text */
.hero-marquee {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	pointer-events: none;
	overflow: visible; /* was 'hidden' — change to visible */
	padding-block: 1rem;
	background: linear-gradient(90deg, transparent, rgba(0,0,0,0.3), transparent);
	height: auto;
	min-height: 120px; /* ensure space for large text */
}

/* Ensure track doesn't clip */
.hero-marquee__track {
	display: flex;
	gap: 4rem;
	animation: marquee 35s linear infinite; /* slower: 35s instead of 18s */
	white-space: nowrap;
	width: fit-content;
}

/* Make text large and fully visible */
.hero-marquee span {
	font-size: clamp(3rem, 10vw, 6rem) !important;
	font-weight: 700 !important;
	color: rgba(255,255,255,0.9);
	letter-spacing: 0.1em;
	text-shadow: 0 2px 12px rgba(0,0,0,0.4);
	line-height: 1.2;
	display: inline-block;
	padding: 0.2em 0;
}

/* Slower, smoother animation */
@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Ensure hero content area has enough bottom padding so marquee doesn't overlap buttons */
.hero__content-wrap {
	padding-bottom: 100px; /* space for marquee */
	position: relative;
	z-index: 3;
}

/* Mobile adjustments */
@media (max-width: 768px) {
	.hero-marquee {
		min-height: 80px;
		padding-block: 0.5rem;
	}
	
	.hero-marquee span {
		font-size: clamp(2rem, 8vw, 4rem) !important;
	}
	
	.hero-marquee__track {
		gap: 2rem;
		animation-duration: 25s; /* still slower on mobile */
	}
	
	.hero__content-wrap {
		padding-bottom: 70px;
	}
}
/* ===== MARQUEE FULLY VISIBLE + MUCH BIGGER ===== */

/* Make hero section tall enough to contain the marquee */
.hero {
	position: relative;
	min-height: 100vh; /* ensures enough space */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-bottom: 0; /* reset any existing padding */
	overflow: visible;
}

/* Ensure video covers full hero area */
.hero-media {
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
}

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

/* Content area - give bottom padding to push marquee down */
.hero__content-wrap {
	position: relative;
	z-index: 3;
	padding-bottom: 140px; /* creates space for marquee inside hero */
	flex: 1;
	display: flex;
	align-items: flex-end; /* push content down if needed */
}

/* Marquee container - now sits inside hero at bottom */
.hero-marquee {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
	pointer-events: none;
	overflow: visible;
	padding: 0.75rem 0;
	background: linear-gradient(90deg, transparent, rgba(0,0,0,0.4), transparent);
	width: 100%;
}

/* Marquee text - MUCH BIGGER */
.hero-marquee span {
	font-size: clamp(4rem, 15vw, 10rem) !important;
	font-weight: 800 !important;
	color: rgba(255,255,255,0.9);
	letter-spacing: 0.15em;
	text-shadow: 0 4px 20px rgba(0,0,0,0.5);
	white-space: nowrap;
	display: inline-block;
	padding: 0.2rem 0;
	line-height: 1.2;
}

.hero-marquee__track {
	display: flex;
	gap: 5rem;
	animation: marquee 40s linear infinite;
	width: fit-content;
}

/* Slower, smoother marquee */
@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Mobile adjustments - still big but proportional */
@media (max-width: 768px) {
	.hero__content-wrap {
		padding-bottom: 100px;
	}
	
	.hero-marquee span {
		font-size: clamp(2.5rem, 10vw, 5rem) !important;
	}
	
	.hero-marquee__track {
		gap: 2.5rem;
		animation-duration: 30s;
	}
}

/* Ensure no clipping from parent containers */
.hero-video-section,
.hero,
.site-main,
#content {
	overflow: visible;
}
.hero-video-section {
	min-height: 100vh;
}
/* ===== FINAL MARQUEE & VIDEO FIXES ===== */

/* 1) Video position adjustment */
.hero-media video,
.hero-media img {
	object-fit: cover;
	object-position: center 30%;
}

/* 2) Sleeker marquee font (less thick) */
.hero-marquee span {
	font-weight: 400 !important;
	font-family: "Cormorant Garamond", Georgia, serif !important;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

/* 3) Force marquee inside hero (no cutoff below video) */
.hero {
	position: relative;
	min-height: 100vh;
	overflow: visible;
}

.hero-media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hero__content-wrap {
	position: relative;
	z-index: 3;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-bottom: 100px;
}

.hero-marquee {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
}

/* Prevent parent overflow clipping */
.hero-video-section,
.site-main,
#content {
	overflow: visible !important;
}

/* ===== HERO MARQUEE ALIGNMENT FIX ===== */
.hero.hero-video-section {
	box-sizing: border-box;
	min-height: 100svh;
	padding-bottom: 0;
	overflow: hidden;
}

.hero.hero-video-section .hero-media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video-section .hero__content-wrap {
	box-sizing: border-box;
	min-height: calc(100svh - var(--chrome-height));
	display: flex;
	align-items: flex-end;
	padding-bottom: clamp(5rem, 10vh, 7rem);
}

.hero.hero-video-section .hero-marquee {
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	padding: 0.5rem 0;
}

.hero.hero-video-section .hero-marquee__track {
	align-items: center;
}

.hero.hero-video-section .hero-marquee span {
	display: block;
	line-height: 0.92;
	padding: 0;
}

@media (max-width: 768px) {
	.hero.hero-video-section .hero__content-wrap {
		min-height: calc(100svh - var(--chrome-height));
		padding-bottom: 4.5rem;
	}
}

/* ===== BREWSTA CONTENT UPDATE ===== */
.hero__brand-mark {
	width: min(170px, 40vw);
	height: auto;
	margin-bottom: 1rem;
	filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.28));
}

.menu-showcase {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
	gap: 1.5rem;
	align-items: center;
	margin-bottom: 1.75rem;
	padding: 1.5rem;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(49, 40, 35, 0.08);
	box-shadow: var(--shadow-card);
}

.menu-showcase__copy {
	display: grid;
	gap: 0.75rem;
}

.menu-showcase__media {
	margin: 0;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

.menu-showcase__media img {
	display: block;
	width: 100%;
	height: auto;
}

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

/* ===== HERO FINAL CLEANUP ===== */
.hero.hero-video-section {
	min-height: 100svh !important;
	padding-top: calc(var(--chrome-height) + 1.25rem) !important;
	padding-bottom: 0 !important;
	overflow: visible !important;
}

.hero.hero-video-section .hero__content-wrap {
	min-height: calc(100svh - var(--chrome-height)) !important;
	display: flex !important;
	align-items: center !important;
	padding-top: 0 !important;
	padding-bottom: clamp(8rem, 16vh, 10rem) !important;
}

.hero.hero-video-section .hero__content {
	max-width: 42rem;
}

.hero.hero-video-section .hero-marquee {
	bottom: 0 !important;
	overflow: visible !important;
	padding: 0.4rem 0 0.85rem !important;
	z-index: 4 !important;
}

.hero.hero-video-section .hero-marquee__track {
	align-items: flex-end !important;
}

.hero.hero-video-section .hero-marquee span {
	font-size: clamp(2.8rem, 10vw, 6.5rem) !important;
	line-height: 1 !important;
	padding: 0 0 0.04em !important;
}

.hero.hero-video-section .hero-media,
.hero.hero-video-section .hero-media__video,
.hero.hero-video-section .hero-media__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video-section .hero-media__video {
	object-fit: cover !important;
	object-position: center center !important;
	background: #120d0a;
	opacity: 1;
	z-index: 1;
	will-change: transform, opacity;
	transform: translateZ(0);
	backface-visibility: hidden;
}

.hero.hero-video-section .hero-media__image {
	object-fit: cover !important;
	object-position: center center !important;
	opacity: 1;
	z-index: 2;
	pointer-events: none;
	transition: opacity 0.35s ease;
	will-change: opacity;
}

.hero.hero-video-section .hero-media__overlay {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.52)) !important;
	z-index: 3;
}

.hero.hero-video-section .hero-media.is-ready .hero-media__image {
	opacity: 0;
}

.hero__brand-mark {
	display: none !important;
}

/* Keep the fixed site chrome below the WordPress admin bar when logged in */
.admin-bar .site-chrome {
	top: 32px !important;
}

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

@media (max-width: 768px) {
	.hero.hero-video-section {
		padding-top: calc(var(--chrome-height) + 0.75rem) !important;
	}

	.hero.hero-video-section .hero__content-wrap {
		padding-bottom: 6rem !important;
	}

	.hero.hero-video-section .hero-marquee span {
		font-size: clamp(2rem, 9vw, 4rem) !important;
	}

	.hero.hero-video-section .hero-media__video {
		object-fit: cover !important;
	}
}

/* ===== MENU TABS + IMPACT STATS ===== */
.section--impact-stats {
	padding-block: 0;
	background: #1b1714;
	color: var(--color-white);
}

.impact-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	padding-block: 2rem;
}

.impact-stats--single {
	grid-template-columns: minmax(0, 1fr);
	max-width: 20rem;
	margin-inline: auto;
}

.impact-stat {
	display: grid;
	gap: 0.45rem;
	justify-items: center;
	text-align: center;
	padding: 1rem;
}

.impact-stat__value {
	font-family: var(--font-heading);
	font-size: clamp(2.2rem, 4vw, 3.5rem);
	line-height: 0.95;
	font-weight: 600;
	color: var(--color-gold);
	letter-spacing: -0.03em;
}

.impact-stat__label {
	font-family: var(--font-heading);
	font-size: clamp(1rem, 1.2vw, 1.45rem);
	color: rgba(255, 255, 255, 0.88);
}

.menu-tabs {
	display: grid;
	grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
	gap: clamp(1.75rem, 3vw, 3.25rem);
	align-items: start;
}

.menu-tabs__media {
	margin: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-elevated);
	min-height: 34rem;
}

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

.menu-tabs__content {
	display: grid;
	gap: 1.75rem;
}

.menu-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
}

.menu-tabs__trigger {
	padding: 0.65rem 1.15rem;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(49, 40, 35, 0.14);
	background: transparent;
	color: var(--color-muted);
	font-weight: 700;
	font-size: 0.98rem;
	transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.menu-tabs__trigger:hover,
.menu-tabs__trigger:focus-visible {
	color: var(--color-espresso);
	border-color: rgba(49, 40, 35, 0.24);
	transform: translateY(-1px);
}

.menu-tabs__trigger.is-active {
	color: var(--color-espresso);
	border-color: rgba(49, 40, 35, 0.7);
	background: rgba(255, 255, 255, 0.84);
}

.menu-tab-panel {
	display: none;
	gap: 1.4rem;
}

.menu-tab-panel.is-active,
.menu-tabs__content > .menu-tab-panel:first-of-type {
	display: grid;
}

.menu-tab-panel__intro {
	display: grid;
	gap: 0.55rem;
	max-width: 38rem;
}

.menu-tab-panel__intro h3 {
	font-size: clamp(2rem, 3vw, 2.7rem);
	line-height: 0.98;
	letter-spacing: -0.03em;
}

.menu-tab-panel__intro p {
	color: var(--color-muted);
	line-height: 1.7;
}

.menu-tab-panel__list {
	display: grid;
	gap: 0;
}

.menu-tab-item {
	display: grid;
	gap: 0.55rem;
	padding-block: 1.1rem;
	border-top: 1px solid rgba(49, 40, 35, 0.08);
}

.menu-tab-item:first-child {
	border-top: 0;
	padding-top: 0.2rem;
}

.menu-tab-item__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1rem;
	align-items: start;
}

.menu-tab-item__top h4 {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(1.8rem, 2vw, 2.4rem);
	line-height: 0.98;
	letter-spacing: -0.03em;
}

.menu-tab-item__price {
	font-family: var(--font-heading);
	font-size: clamp(1.6rem, 1.8vw, 2.1rem);
	line-height: 1;
	color: var(--color-espresso);
	white-space: nowrap;
}

.menu-tab-item p {
	margin: 0;
	max-width: 38rem;
	color: var(--color-muted);
	line-height: 1.65;
}

@media (max-width: 1100px) {
	.impact-stats {
		grid-template-columns: 1fr;
	}

	.menu-tabs {
		grid-template-columns: 1fr;
	}

	.menu-tabs__media {
		min-height: 24rem;
		max-width: 32rem;
	}
}

@media (max-width: 782px) {
	.menu-tabs__nav {
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 0.25rem;
	}

	.menu-tabs__media {
		min-height: 20rem;
		max-width: none;
	}

	.menu-tab-item__top {
		grid-template-columns: 1fr;
		gap: 0.45rem;
	}

	.menu-tab-item__price {
		font-size: 1.5rem;
	}
}

/* Never animate or clip WordPress admin-bar links */
#wpadminbar .interactive-slide {
	display: inline !important;
	white-space: normal !important;
}

#wpadminbar .interactive-slide__viewport,
#wpadminbar .interactive-slide__inner,
#wpadminbar .interactive-slide__line {
	display: inline !important;
	height: auto !important;
	line-height: inherit !important;
	overflow: visible !important;
	transform: none !important;
	transition: none !important;
}

/* ===== MOBILE POLISH ===== */
@media (max-width: 900px) {
	.section {
		padding-block: clamp(3.5rem, 7vw, 4.75rem);
	}

	.section__header {
		gap: 0.85rem;
		margin-bottom: 2rem;
	}

	.section__header h2 {
		font-size: clamp(2rem, 6vw, 3rem);
		line-height: 1.02;
	}

	.hero.hero-video-section {
		min-height: 92svh !important;
	}

	.hero.hero-video-section .hero__content-wrap {
		align-items: flex-end !important;
		padding-bottom: clamp(7rem, 12vw, 8.5rem) !important;
	}

	.hero.hero-video-section .hero__content {
		max-width: min(100%, 32rem);
		gap: 1rem;
	}

	.hero__title {
		font-size: clamp(2.7rem, 8vw, 4rem) !important;
		line-height: 0.98 !important;
	}

	.hero__subtitle {
		max-width: 28rem;
		font-size: 1rem !important;
		line-height: 1.55 !important;
	}

	.impact-stats {
		gap: 0.4rem;
		padding-block: 1.6rem;
	}

	.impact-stat {
		padding: 0.85rem 0.5rem;
	}

	.menu-tabs {
		gap: 1.5rem;
	}

	.menu-tabs__content {
		gap: 1.25rem;
	}

	.menu-tabs__media {
		order: 2;
		min-height: 16rem;
		border-radius: 1.5rem;
	}

	.menu-tabs__nav {
		scroll-snap-type: x proximity;
		scrollbar-width: none;
	}

	.menu-tabs__nav::-webkit-scrollbar {
		display: none;
	}

	.menu-tabs__trigger {
		flex: 0 0 auto;
		scroll-snap-align: start;
		min-height: 2.75rem;
	}

	.menu-tab-panel__intro h3 {
		font-size: clamp(1.8rem, 5vw, 2.35rem);
	}

	.menu-tab-item {
		padding-block: 0.95rem;
	}

	.menu-tab-item__top h4 {
		font-size: clamp(1.45rem, 4vw, 2rem);
	}

	.menu-tab-item__price {
		font-size: clamp(1.3rem, 3vw, 1.65rem);
	}

	.gallery-grid {
		gap: 0.9rem;
	}

	.gallery-card,
	.gallery-card--large,
	.gallery-card--wide,
	.gallery-card--tall,
	.gallery-card--standard {
		aspect-ratio: 5 / 4;
		border-radius: 1.5rem;
	}

	.site-footer__grid {
		gap: 1.25rem;
		padding-block: 3rem;
	}

	.site-footer__bottom-inner {
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	:root {
		--container: min(100% - 1.1rem, 100%);
	}

	.section {
		padding-block: 3.25rem;
	}

	.announcement-bar__inner {
		text-align: center;
		align-items: center;
	}

	.hero.hero-video-section {
		padding-top: calc(var(--chrome-height) + 0.5rem) !important;
	}

	.hero.hero-video-section .hero__content-wrap {
		padding-bottom: 5.5rem !important;
	}

	.hero__title {
		font-size: clamp(2.2rem, 11vw, 3.15rem) !important;
	}

	.hero__subtitle {
		font-size: 0.95rem !important;
	}

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

	.hero__actions .button {
		width: 100%;
	}

	.hero.hero-video-section .hero-marquee {
		padding-bottom: 0.65rem !important;
	}

	.hero.hero-video-section .hero-marquee span {
		font-size: clamp(1.8rem, 12vw, 3.2rem) !important;
	}

	.impact-stat__value {
		font-size: clamp(2rem, 10vw, 2.6rem);
	}

	.impact-stat__label {
		font-size: 1.1rem;
		line-height: 1.2;
	}

	.menu-tabs__media {
		min-height: 13rem;
	}

	.menu-tabs__trigger {
		font-size: 0.92rem;
		padding-inline: 0.95rem;
	}

	.menu-tab-panel {
		gap: 1rem;
	}

	.menu-tab-item__top {
		gap: 0.35rem;
	}

	.gallery-card,
	.gallery-card--large,
	.gallery-card--wide,
	.gallery-card--tall,
	.gallery-card--standard {
		aspect-ratio: 1 / 1;
	}

	.site-footer__title {
		font-size: 1.8rem;
	}
}

/* ===== HOMEPAGE HERO LOGO + SLIM NAV ===== */
.home {
	--header-height: 4.2rem;
	--chrome-height: calc(var(--header-height) + var(--announcement-height));
}

.site-header--hero-brandless {
	min-height: var(--header-height);
}

.site-header--hero-brandless .site-header__inner {
	grid-template-columns: 1fr auto 1fr;
	gap: 1rem;
	padding-block: 0.4rem;
}

.site-header--hero-brandless .primary-navigation {
	grid-column: 2;
	justify-self: center;
}

.site-header--hero-brandless .site-header__actions {
	grid-column: 3;
	justify-self: end;
}

.site-header--hero-brandless .menu {
	gap: 1.15rem;
}

.site-header--hero-brandless .menu--primary a {
	font-size: 0.96rem;
}

.hero__brand-link {
	position: absolute;
	top: calc(var(--chrome-height) + 0.85rem);
	left: clamp(1rem, 5vw, 3rem);
	z-index: 5;
	display: inline-flex;
	align-items: center;
}

.hero__brand-mark {
	display: block !important;
	width: clamp(118px, 13vw, 190px);
	height: auto;
	margin: 0;
	filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.28));
}

@media (max-width: 900px) {
	.home {
		--header-height: 3.9rem;
	}

	.site-header--hero-brandless .site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.site-header--hero-brandless .site-header__actions {
		grid-column: 2;
	}

	.hero__brand-link {
		top: calc(var(--chrome-height) + 0.75rem);
		left: 1rem;
	}

	.hero__brand-mark {
		width: clamp(96px, 24vw, 140px);
	}
}

@media (max-width: 640px) {
	.home {
		--header-height: 4rem;
	}

	.site-header--hero-brandless .site-header__inner {
		padding-block: 0.4rem;
		align-items: center;
	}

	.site-header--hero-brandless .menu-toggle {
		padding: 0.42rem 0.7rem;
		min-height: 2.35rem;
	}

	.hero__brand-link {
		top: calc(var(--chrome-height) + 0.2rem);
		left: 0.75rem;
		right: auto;
	}

	.hero__brand-mark {
		width: clamp(64px, 18vw, 82px);
	}

	.hero.hero-video-section .hero__content-wrap {
		padding-top: 4.2rem !important;
	}

	.hero.hero-video-section .hero__content {
		max-width: min(100%, 21rem);
		margin-inline: auto;
	}

	.hero.hero-video-section .hero__actions {
		width: 100%;
		align-items: center;
	}

	.hero.hero-video-section .hero__actions .button {
		width: min(100%, 18.5rem);
		margin-inline: auto;
	}

	.hero__title {
		max-width: 12ch;
	}
}
/* ===== FINAL MENU IMAGE FIX (CLEAN — NO BREAKS) ===== */

.menu-tabs__media {
	margin: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-elevated);

	/* KEY FIX */
	height: 34rem;
	min-height: 34rem;
	max-height: 34rem;

	display: block;
}

.menu-tabs__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}
/* ===== VALUES FEATURE IMAGE ===== */
.values-feature-image {
	margin: 2rem auto 0;
	max-width: 58rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-elevated);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.values-feature-image img {
	width: 100%;
	height: clamp(18rem, 36vw, 30rem);
	object-fit: cover;
	object-position: center center;
	display: block;
}
/* ===== HERO KICKER PREMIUM STYLE ===== */

.hero__kicker {
	margin: 0 0 0.35rem;
	font-size: clamp(0.78rem, 1vw, 0.95rem);
	font-weight: 900;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #d2ad78;
	text-shadow: 0 6px 22px rgba(0, 0, 0, 0.65);
}

.hero__kicker::after {
	display: none;
	content: none;
}

@media (max-width: 640px) {
	.hero__kicker {
		font-size: 0.68rem;
		letter-spacing: 0.14em;
		line-height: 1.4;
	}
}