/*
Theme Name: COZY 59
Theme URI: https://cozy59.ma
Author: COZY 59
Description: Custom premium WordPress theme for COZY 59 Coffee & More in Kénitra.
Version: 1.0.0
Text Domain: cozy59
*/

:root {
	--ivory: #f4e8d9;
	--ivory-soft: #fbf6ef;
	--paper: #f8efe4;
	--burgundy: #4b1724;
	--burgundy-deep: #2f0d16;
	--red: #971f36;
	--copper: #9e4d13;
	--copper-visual: #b76522;
	--copper-light: #dc9b5d;
	--charcoal: #241c1b;
	--brown: #463d36;
	--muted: #756b64;
	--line: rgba(75, 23, 36, 0.18);
	--light-line: rgba(244, 232, 217, 0.26);
	--shadow: 0 24px 70px rgba(47, 13, 22, 0.14);
	--serif: Palatino Linotype, Book Antiqua, Palatino, Georgia, serif;
	--sans: "Segoe UI", Helvetica Neue, Arial, sans-serif;
	--shell: min(1240px, calc(100vw - 64px));
	--header-height: 82px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 118px;
	background: var(--ivory-soft);
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 10% 10%, rgba(183, 101, 34, 0.055), transparent 30rem),
		var(--ivory-soft);
	color: var(--charcoal);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.menu-open {
	overflow: hidden;
}

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

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

button,
input {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

button {
	color: inherit;
}

::selection {
	background: var(--copper);
	color: #fff;
}

:focus-visible {
	outline: 3px solid var(--copper-light);
	outline-offset: 4px;
}

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

.section {
	padding-block: clamp(88px, 10vw, 154px);
}

.section--dark {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 35%),
		var(--burgundy-deep);
	color: var(--ivory);
}

.sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 10000;
	padding: 12px 18px;
	background: #fff;
	color: var(--burgundy);
	font-weight: 800;
	transform: translateY(-180%);
	transition: transform 180ms ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 11px;
	margin: 0 0 20px;
	color: var(--copper-light);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.26em;
	line-height: 1.3;
	text-transform: uppercase;
}

.eyebrow::before {
	content: "";
	width: 38px;
	height: 1px;
	background: currentColor;
}

.eyebrow--dark {
	color: var(--copper);
}

h1,
h2,
h3,
h4 {
	margin-block: 0;
	font-family: var(--serif);
	font-weight: 400;
	line-height: 1.02;
}

h1 em,
h2 em {
	font-weight: 400;
	color: var(--copper);
}

.button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 13px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	transition: transform 260ms var(--ease), background 260ms ease, color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.button:hover {
	transform: translateY(-3px);
}

.button--small {
	min-height: 44px;
	padding: 10px 19px;
	font-size: 0.7rem;
}

.button--copper {
	background: var(--copper);
	color: #fff;
	box-shadow: 0 13px 34px rgba(94, 39, 9, 0.28);
}

.button--copper:hover {
	background: #833b0c;
	box-shadow: 0 17px 40px rgba(94, 39, 9, 0.35);
}

.button--burgundy {
	background: var(--burgundy);
	color: #fff;
	box-shadow: 0 13px 34px rgba(75, 23, 36, 0.2);
}

.button--burgundy:hover {
	background: var(--red);
}

.button--cream {
	background: var(--ivory);
	color: var(--burgundy);
}

.button--cream:hover {
	background: #fff;
}

.button--ghost-light {
	border-color: rgba(255, 255, 255, 0.58);
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(10px);
}

.button--ghost-light:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.16);
}

.button--outline {
	border-color: var(--burgundy);
	color: var(--burgundy);
	background: transparent;
}

.button--outline:hover {
	background: var(--burgundy);
	color: #fff;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding-block: 8px;
	border-bottom: 1px solid var(--copper);
	color: var(--burgundy);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	transition: gap 240ms var(--ease), color 240ms ease;
}

.text-link:hover {
	gap: 15px;
	color: var(--red);
}

.page-progress {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 3px;
	pointer-events: none;
}

.page-progress span {
	display: block;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, var(--copper), #e8b984);
	box-shadow: 0 0 12px rgba(220, 155, 93, 0.72);
}

.service-ribbon {
	position: relative;
	z-index: 101;
	display: grid;
	min-height: 32px;
	place-items: center;
	overflow: hidden;
	background: var(--copper);
	color: #fff;
}

.service-ribbon__track {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	padding: 7px 24px;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.35;
	text-align: center;
	text-transform: uppercase;
}

.service-ribbon__track span[aria-hidden] {
	font-size: 0.55rem;
	opacity: 0.7;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: var(--header-height);
	background: rgba(59, 14, 26, 0.97);
	box-shadow: 0 5px 24px rgba(26, 7, 12, 0.17);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: space-between;
}

.site-brand {
	display: inline-flex;
	width: 174px;
	height: 58px;
	align-items: center;
	flex: 0 0 auto;
}

.site-brand img {
	width: 100%;
	height: 52px;
	object-fit: contain;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: clamp(20px, 2.6vw, 39px);
}

.nav-link {
	position: relative;
	padding-block: 10px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.73rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	transition: color 220ms ease;
}

.nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 3px;
	width: 100%;
	height: 1px;
	background: var(--copper-light);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 260ms var(--ease);
}

.nav-link:hover,
.nav-link.is-current {
	color: #fff;
}

.nav-link:hover::after,
.nav-link.is-current::after {
	transform: scaleX(1);
	transform-origin: left;
}

.menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 7px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
	display: block;
	width: 25px;
	height: 1px;
	background: #fff;
	transition: transform 240ms var(--ease);
}

/* Hero */
.home-hero {
	position: relative;
	min-height: min(880px, calc(100svh - var(--header-height)));
	overflow: hidden;
	background: var(--burgundy-deep);
	color: #fff;
}

.hero-media,
.hero-slide,
.hero-overlay {
	position: absolute;
	inset: 0;
}

.hero-slide {
	opacity: 0;
	transform: scale(1.025);
	transition: opacity 1000ms ease, transform 6800ms linear;
}

.hero-slide.is-active {
	z-index: 1;
	opacity: 1;
	transform: scale(1);
}

.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	z-index: 2;
	background:
		linear-gradient(90deg, rgba(33, 8, 16, 0.89) 0%, rgba(46, 12, 20, 0.66) 44%, rgba(35, 13, 14, 0.13) 77%),
		linear-gradient(0deg, rgba(34, 8, 15, 0.65), transparent 45%);
}

.home-hero__content {
	position: relative;
	z-index: 3;
	display: flex;
	min-height: min(880px, calc(100svh - var(--header-height)));
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding-block: 92px 130px;
}

.hero-eyebrow {
	animation: hero-in 720ms 140ms var(--ease) both;
}

.home-hero h1 {
	max-width: 830px;
	font-size: clamp(4rem, 8.7vw, 8.35rem);
	letter-spacing: -0.052em;
	line-height: 0.84;
	text-wrap: balance;
	animation: hero-in 850ms 230ms var(--ease) both;
}

.home-hero h1 em {
	color: var(--ivory);
	font-style: italic;
}

.hero-copy {
	max-width: 660px;
	margin: 32px 0 0;
	color: rgba(255, 255, 255, 0.79);
	font-size: clamp(1rem, 1.45vw, 1.15rem);
	line-height: 1.75;
	animation: hero-in 850ms 330ms var(--ease) both;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 36px;
	animation: hero-in 850ms 430ms var(--ease) both;
}

.hero-hours {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 31px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	animation: hero-in 850ms 500ms var(--ease) both;
}

.hero-hours > span {
	width: 8px;
	height: 8px;
	border: 2px solid var(--copper-light);
	border-radius: 50%;
}

.hero-hours b {
	color: var(--copper-light);
}

.hero-controls {
	position: absolute;
	right: max(32px, calc((100vw - min(1240px, calc(100vw - 64px))) / 2));
	bottom: 39px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 12px;
}

.hero-arrow,
.hero-pause {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	background: rgba(31, 8, 14, 0.2);
	color: #fff;
	cursor: pointer;
	transition: background 220ms ease, border 220ms ease, transform 220ms ease;
}

.hero-arrow:hover,
.hero-pause:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.14);
	transform: scale(1.05);
}

.hero-dots {
	display: flex;
	align-items: center;
	gap: 0;
	padding-inline: 3px;
}

.hero-dot {
	position: relative;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.hero-dot::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 23px;
	height: 3px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.42);
	transform: translate(-50%, -50%);
	transition: width 220ms ease, background 220ms ease;
}

.hero-dot.is-active::before {
	width: 34px;
	background: var(--copper-light);
}

.scroll-cue {
	position: absolute;
	left: 50%;
	bottom: 28px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	transform: translateX(-50%);
}

.scroll-cue i {
	position: relative;
	display: block;
	width: 1px;
	height: 37px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.26);
}

.scroll-cue i::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 45%;
	background: #fff;
	animation: scroll-line 1800ms infinite ease-in-out;
}

@keyframes hero-in {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-line {
	0% { transform: translateY(-120%); }
	65%, 100% { transform: translateY(240%); }
}

/* Welcome */
.intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
	gap: clamp(60px, 9vw, 142px);
	align-items: center;
}

.intro-logo {
	width: 205px;
	height: 138px;
	margin: -15px 0 9px;
	object-fit: contain;
	object-position: left center;
}

.intro-copy h2,
.section-heading h2,
.gallery-teaser h2,
.visit-copy h2,
.gallery-page__intro h2,
.contact-cards h2,
.menu-closing h2 {
	color: var(--burgundy);
	font-size: clamp(2.75rem, 5vw, 5.1rem);
	letter-spacing: -0.045em;
}

.intro-copy > p:not(.eyebrow) {
	max-width: 590px;
	margin: 24px 0 0;
	color: var(--muted);
	font-size: 1.03rem;
}

.intro-copy .text-link {
	margin-top: 30px;
}

.intro-visual {
	position: relative;
	min-height: 690px;
}

.framed-photo {
	position: absolute;
	margin: 0;
	background: #fff;
	box-shadow: var(--shadow);
}

.framed-photo::before {
	content: "";
	position: absolute;
	inset: 12px;
	z-index: 1;
	border: 1px solid rgba(255, 255, 255, 0.68);
	pointer-events: none;
}

.framed-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.framed-photo--main {
	inset: 0 0 60px 11%;
	transform: rotate(1.3deg);
}

.framed-photo--main img {
	object-position: center;
}

.framed-photo--float {
	left: -4%;
	bottom: 0;
	width: 43%;
	height: 265px;
	border: 9px solid var(--ivory-soft);
	transform: rotate(-4deg);
}

.round-note {
	position: absolute;
	right: -32px;
	top: 76px;
	z-index: 2;
	display: flex;
	width: 142px;
	height: 142px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border: 1px solid rgba(244, 232, 217, 0.6);
	border-radius: 50%;
	background: var(--burgundy);
	color: var(--ivory);
	font-family: var(--serif);
	text-align: center;
	transform: rotate(8deg);
}

.round-note::before {
	content: "";
	position: absolute;
	inset: 7px;
	border: 1px solid rgba(244, 232, 217, 0.35);
	border-radius: inherit;
}

.round-note span {
	font-size: 1.2rem;
	font-style: italic;
}

.round-note b {
	color: var(--copper-light);
	font-size: 1rem;
	font-weight: 400;
}

/* Moment cards */
.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: clamp(44px, 6vw, 78px);
}

.section-heading--light h2 {
	color: var(--ivory);
}

.section-heading--light h2 em {
	color: var(--copper-light);
}

.section-heading__copy {
	max-width: 440px;
	margin: 0;
	color: var(--muted);
}

.moment-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(19px, 2.4vw, 32px);
}

.moment-card {
	border: 1px solid var(--light-line);
	background: rgba(255, 255, 255, 0.025);
	overflow: hidden;
	transition: transform 350ms var(--ease), border-color 300ms ease, background 300ms ease;
}

.moment-card:hover {
	border-color: rgba(220, 155, 93, 0.68);
	background: rgba(255, 255, 255, 0.055);
	transform: translateY(-9px);
}

.moment-card__image {
	height: clamp(290px, 30vw, 440px);
	overflow: hidden;
}

.moment-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 650ms var(--ease);
}

.moment-card:hover img {
	transform: scale(1.035);
}

.moment-card__content {
	position: relative;
	padding: 30px 28px 35px;
}

.moment-card__content > span {
	display: block;
	margin-bottom: 16px;
	color: var(--copper-light);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.15em;
}

.moment-card h3 {
	padding-right: 32px;
	color: var(--ivory);
	font-size: clamp(1.8rem, 2.7vw, 2.65rem);
}

.moment-card p {
	margin: 17px 0 0;
	color: rgba(244, 232, 217, 0.64);
	font-size: 0.92rem;
}

.moment-card i {
	position: absolute;
	right: 25px;
	top: 29px;
	color: var(--copper-light);
	font-style: normal;
	font-size: 1.25rem;
	transition: transform 260ms var(--ease);
}

.moment-card:hover i {
	transform: translate(3px, -3px);
}

/* Signatures */
.signature-section {
	position: relative;
	overflow: hidden;
}

.signature-section::before,
.signature-section::after {
	content: "";
	position: absolute;
	width: 340px;
	height: 340px;
	border: 1px solid rgba(183, 101, 34, 0.13);
	border-radius: 50%;
	pointer-events: none;
}

.signature-section::before {
	left: -240px;
	top: 140px;
}

.signature-section::after {
	right: -260px;
	bottom: 80px;
}

.signature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(23px, 3vw, 42px);
}

.signature-card a {
	display: block;
}

.signature-card__image {
	position: relative;
	height: clamp(290px, 29vw, 400px);
	overflow: hidden;
	background: var(--ivory);
}

.signature-card__image::after {
	content: "";
	position: absolute;
	inset: 10px;
	border: 1px solid rgba(255, 255, 255, 0.57);
	pointer-events: none;
}

.signature-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms var(--ease);
}

.signature-card:hover img {
	transform: scale(1.035);
}

.signature-card__image > span {
	position: absolute;
	left: 23px;
	top: 23px;
	z-index: 2;
	padding: 8px 13px;
	border-radius: 999px;
	background: rgba(47, 13, 22, 0.85);
	color: #fff;
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

.signature-card__text {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 15px;
	padding-top: 23px;
}

.signature-card h3 {
	color: var(--burgundy);
	font-size: clamp(1.72rem, 2.6vw, 2.35rem);
}

.signature-card strong {
	flex: 0 0 auto;
	color: var(--copper);
	font-family: var(--serif);
	font-size: 1.35rem;
	font-weight: 400;
}

.signature-card > a > p {
	margin: 11px 0 0;
	color: var(--muted);
	font-size: 0.91rem;
}

.centered-action {
	display: flex;
	justify-content: center;
	margin-top: clamp(46px, 6vw, 75px);
}

/* Gallery teaser */
.gallery-teaser {
	padding-top: 55px;
	background: var(--paper);
	border-top: 1px solid var(--line);
}

.gallery-teaser__header {
	display: grid;
	grid-template-columns: 1fr minmax(300px, 0.6fr);
	gap: 70px;
	align-items: end;
	margin-bottom: 46px;
}

.gallery-teaser__header > div:last-child p {
	margin: 0 0 20px;
	color: var(--muted);
}

.gallery-strip {
	display: grid;
	height: min(660px, 58vw);
	min-height: 470px;
	grid-template-columns: 1.35fr 0.75fr 0.75fr 1fr;
	gap: 7px;
	padding-inline: 7px;
}

.gallery-strip__item {
	overflow: hidden;
}

.gallery-strip__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms var(--ease), filter 300ms ease;
}

.gallery-strip__item:hover img {
	transform: scale(1.035);
	filter: saturate(1.05);
}

.gallery-strip__item--tall img {
	object-position: center 52%;
}

/* Visit banner */
.visit-banner {
	position: relative;
	display: grid;
	min-height: 700px;
	place-items: center;
	overflow: hidden;
	color: #fff;
}

.visit-banner__media,
.visit-banner__overlay {
	position: absolute;
	inset: 0;
}

.visit-banner__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.visit-banner__overlay {
	background: linear-gradient(90deg, rgba(39, 8, 17, 0.9), rgba(39, 8, 17, 0.55) 55%, rgba(30, 12, 12, 0.26));
}

.visit-banner__content {
	position: relative;
	z-index: 1;
}

.visit-banner h2 {
	max-width: 800px;
	color: var(--ivory);
	font-size: clamp(3.2rem, 6.7vw, 7rem);
	letter-spacing: -0.05em;
}

.visit-banner h2 em {
	color: var(--copper-light);
}

.visit-banner__content > p:not(.eyebrow) {
	max-width: 570px;
	margin: 25px 0 0;
	color: rgba(255, 255, 255, 0.77);
	font-size: 1.05rem;
}

.visit-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 34px;
}

/* Generic page hero */
.page-hero {
	position: relative;
	display: grid;
	min-height: clamp(530px, 67vh, 720px);
	place-items: center;
	overflow: hidden;
	background: var(--burgundy-deep);
	color: #fff;
}

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

.page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-hero--menu .page-hero__media img {
	object-position: center 51%;
}

.page-hero--gallery .page-hero__media img {
	object-position: center 51%;
}

.page-hero--contact .page-hero__media img {
	object-position: center 57%;
}

.page-hero__overlay {
	background:
		linear-gradient(90deg, rgba(42, 9, 18, 0.91), rgba(42, 9, 18, 0.44) 65%, rgba(35, 9, 15, 0.18)),
		linear-gradient(0deg, rgba(35, 8, 15, 0.6), transparent 56%);
}

.page-hero__content {
	position: relative;
	z-index: 1;
	padding-block: 82px;
}

.page-hero h1 {
	max-width: 900px;
	font-size: clamp(4rem, 8vw, 8rem);
	letter-spacing: -0.055em;
}

.page-hero h1 em {
	color: var(--ivory);
	font-style: italic;
}

.page-hero__content > p:not(.eyebrow) {
	max-width: 680px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.79);
	font-size: 1.08rem;
}

.page-hero .button {
	margin-top: 30px;
}

/* Menu browser */
.menu-browser {
	background: var(--ivory-soft);
}

.menu-toolbar-wrap {
	position: sticky;
	top: var(--header-height);
	z-index: 40;
	border-bottom: 1px solid var(--line);
	background: rgba(251, 246, 239, 0.96);
	box-shadow: 0 8px 30px rgba(75, 23, 36, 0.07);
	backdrop-filter: blur(18px);
}

.menu-toolbar {
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) minmax(560px, 1.3fr);
	gap: 30px;
	align-items: center;
	padding-block: 17px;
}

.menu-search {
	position: relative;
	display: flex;
	height: 50px;
	align-items: center;
	border-bottom: 1px solid rgba(75, 23, 36, 0.35);
}

.menu-search > span {
	font-size: 1.3rem;
	transform: rotate(-18deg);
}

.menu-search input {
	width: 100%;
	height: 100%;
	padding: 0 42px 0 12px;
	border: 0;
	background: transparent;
	color: var(--charcoal);
	font-size: 0.92rem;
}

.menu-search:focus-within {
	border-bottom-color: var(--burgundy);
	box-shadow: 0 2px 0 -1px var(--burgundy);
}

.menu-search input:focus-visible {
	outline: 0;
}

.menu-search input::placeholder {
	color: #887b73;
}

.menu-search button {
	position: absolute;
	right: 0;
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	color: var(--burgundy);
	font-size: 1.5rem;
	cursor: pointer;
}

.menu-search.has-value button {
	display: block;
}

.menu-filters,
.gallery-filters {
	display: flex;
	justify-content: flex-end;
	gap: 7px;
}

.menu-filters button,
.gallery-filters button {
	min-height: 44px;
	padding: 8px 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: transparent;
	color: var(--brown);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	white-space: nowrap;
	transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.menu-filters button:hover,
.menu-filters button.is-active,
.gallery-filters button:hover,
.gallery-filters button.is-active {
	border-color: var(--burgundy);
	background: var(--burgundy);
	color: #fff;
}

.menu-content {
	padding-block: 68px 130px;
}

.menu-status {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 42px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--line);
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.menu-status p {
	margin: 0;
}

.menu-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 25px;
	align-items: start;
}

.menu-section {
	position: relative;
	padding: clamp(28px, 3.5vw, 46px);
	border: 1px solid var(--line);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(244, 232, 217, 0.48)),
		var(--paper);
	box-shadow: 0 13px 40px rgba(75, 23, 36, 0.055);
	transition: opacity 240ms ease, transform 300ms var(--ease), box-shadow 300ms ease;
}

.menu-section::before,
.menu-section::after {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	border-color: var(--copper);
	opacity: 0.48;
}

.menu-section::before {
	left: 10px;
	top: 10px;
	border-left: 1px solid;
	border-top: 1px solid;
}

.menu-section::after {
	right: 10px;
	bottom: 10px;
	border-right: 1px solid;
	border-bottom: 1px solid;
}

.menu-section:hover {
	box-shadow: 0 22px 54px rgba(75, 23, 36, 0.09);
}

.menu-section[data-category="brunchs"] {
	grid-column: 1 / -1;
}

.menu-section.is-hidden,
.menu-item.is-hidden,
.photo-card.is-hidden {
	display: none;
}

.menu-section__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 25px;
	margin-bottom: 28px;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(75, 23, 36, 0.14);
}

.menu-kicker {
	margin: 0 0 8px;
	color: var(--copper);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.menu-section h2 {
	color: var(--burgundy);
	font-size: clamp(2rem, 3.5vw, 3rem);
	letter-spacing: -0.035em;
}

.menu-section__note {
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 0.8rem;
	font-style: italic;
}

.schedule-pill {
	flex: 0 0 auto;
	padding: 7px 11px;
	border: 1px solid rgba(183, 101, 34, 0.3);
	border-radius: 999px;
	color: var(--copper);
	font-size: 0.61rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.menu-items {
	display: grid;
	gap: 23px;
}

.menu-section[data-category="brunchs"] .menu-items {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 60px;
}

.menu-item {
	transition: opacity 220ms ease, transform 220ms var(--ease);
}

.menu-item__top {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.menu-item h3 {
	flex: 0 1 auto;
	color: var(--burgundy);
	font-family: var(--sans);
	font-size: 0.88rem;
	font-weight: 850;
	letter-spacing: 0.035em;
	line-height: 1.3;
	text-transform: uppercase;
}

.menu-item__line {
	min-width: 12px;
	height: 1px;
	flex: 1 1 auto;
	border-top: 1px dotted rgba(75, 23, 36, 0.34);
}

.menu-item strong {
	flex: 0 0 auto;
	color: var(--red);
	font-family: var(--serif);
	font-size: 1.23rem;
	font-weight: 400;
}

.menu-item strong small {
	font-family: var(--sans);
	font-size: 0.52rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.menu-item > p {
	max-width: 94%;
	margin: 6px 0 0;
	color: var(--muted);
	font-size: 0.8rem;
	font-style: italic;
	line-height: 1.55;
}

.menu-note-card {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px;
	border: 1px dashed rgba(183, 101, 34, 0.42);
	color: var(--burgundy);
}

.menu-note-card > span {
	color: var(--copper);
	font-size: 1.35rem;
}

.menu-note-card > p {
	margin: 0;
	font-style: normal;
}

.menu-empty {
	padding: 75px 25px;
	text-align: center;
}

.menu-empty > span {
	display: block;
	color: var(--copper);
	font-size: 3rem;
	transform: rotate(-15deg);
}

.menu-empty h2 {
	margin-top: 10px;
	color: var(--burgundy);
	font-size: 3rem;
}

.menu-empty p {
	margin: 14px auto 27px;
	color: var(--muted);
}

.menu-closing {
	padding-block: 95px;
	border-top: 1px solid var(--line);
	background: var(--ivory);
}

.menu-closing__inner {
	display: grid;
	grid-template-columns: 0.65fr 1.1fr 0.65fr;
	gap: 30px;
	align-items: end;
}

.menu-closing__inner .eyebrow {
	align-self: start;
}

.menu-closing__inner > div:last-child {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 20px;
}

/* Gallery */
.gallery-page__intro {
	display: grid;
	grid-template-columns: 1fr minmax(300px, 0.55fr);
	gap: 70px;
	align-items: end;
}

.gallery-page__intro > p {
	margin: 0;
	color: var(--muted);
	font-size: 1.04rem;
}

.gallery-filters {
	justify-content: flex-start;
	margin-block: 52px 40px;
}

.photo-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-flow: dense;
	gap: 14px;
}

.photo-card {
	grid-column: span 4;
	margin: 0;
}

.photo-card:nth-child(7n + 1),
.photo-card:nth-child(7n + 5) {
	grid-column: span 8;
}

.photo-card:nth-child(7n + 3) button {
	aspect-ratio: 0.86;
}

.photo-card button {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: var(--ivory);
	aspect-ratio: 1.25;
	overflow: hidden;
	cursor: zoom-in;
}

.photo-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms var(--ease), filter 300ms ease;
}

.photo-card:hover img,
.photo-card button:focus-visible img {
	transform: scale(1.035);
	filter: saturate(1.05) contrast(1.02);
}

.photo-card__zoom {
	position: absolute;
	right: 18px;
	top: 18px;
	display: grid;
	width: 43px;
	height: 43px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 50%;
	background: rgba(47, 13, 22, 0.52);
	color: #fff;
	font-size: 1.35rem;
	backdrop-filter: blur(7px);
	opacity: 0;
	transform: translateY(-7px);
	transition: opacity 220ms ease, transform 260ms var(--ease);
}

.photo-card:hover .photo-card__zoom,
.photo-card button:focus-visible .photo-card__zoom {
	opacity: 1;
	transform: translateY(0);
}

.photo-card figcaption {
	display: flex;
	align-items: baseline;
	gap: 13px;
	padding: 13px 2px 23px;
}

.photo-card figcaption span {
	color: var(--copper);
	font-size: 0.61rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.photo-card figcaption p {
	margin: 0;
	color: var(--brown);
	font-family: var(--serif);
	font-size: 1rem;
}

.lightbox {
	width: 100vw;
	max-width: none;
	height: 100dvh;
	max-height: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	overflow: hidden;
}

.lightbox::backdrop {
	background: rgba(23, 5, 11, 0.91);
	backdrop-filter: blur(14px);
}

.lightbox__backdrop {
	position: absolute;
	inset: 0;
}

.lightbox__panel {
	position: relative;
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	padding: 55px 92px;
}

.lightbox figure {
	position: relative;
	z-index: 1;
	display: flex;
	width: min(1100px, 82vw);
	height: calc(100dvh - 110px);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin: 0;
}

.lightbox figure img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: calc(100% - 62px);
	object-fit: contain;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.lightbox figcaption {
	min-height: 50px;
	padding: 16px 12px 0;
	color: rgba(255, 255, 255, 0.8);
	font-family: var(--serif);
	font-size: 1.1rem;
	text-align: center;
}

.lightbox__close,
.lightbox__arrow {
	position: absolute;
	z-index: 2;
	display: grid;
	width: 50px;
	height: 50px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
	color: #fff;
	font-size: 1.45rem;
	cursor: pointer;
	transition: background 220ms ease, transform 220ms ease;
}

.lightbox__close:hover,
.lightbox__arrow:hover {
	background: var(--copper);
	transform: scale(1.06);
}

.lightbox__close {
	right: 28px;
	top: 24px;
}

.lightbox__arrow--prev {
	left: 28px;
	top: 50%;
}

.lightbox__arrow--next {
	right: 28px;
	top: 50%;
}

.social-callout {
	padding-block: 85px;
	border-top: 1px solid var(--line);
	background: var(--ivory);
}

.social-callout__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.social-callout__inner > div {
	position: relative;
	padding-left: 87px;
}

.social-callout__icon {
	position: absolute;
	left: 0;
	top: 50%;
	color: var(--red);
	font-size: 4.5rem;
	line-height: 1;
	transform: translateY(-50%);
}

.social-callout .eyebrow {
	margin-bottom: 7px;
}

.social-callout h2 {
	color: var(--burgundy);
	font-size: clamp(2rem, 4vw, 4rem);
}

/* Contact */
.visit-grid {
	display: grid;
	grid-template-columns: 1fr minmax(400px, 0.76fr);
	gap: clamp(60px, 9vw, 130px);
	align-items: center;
}

.visit-copy > p:not(.eyebrow) {
	max-width: 570px;
	margin: 25px 0 0;
	color: var(--muted);
	font-size: 1.04rem;
}

.visit-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 33px;
}

.service-card {
	position: relative;
	padding: clamp(29px, 4vw, 52px);
	border: 1px solid rgba(183, 101, 34, 0.34);
	background: var(--paper);
	box-shadow: var(--shadow);
}

.service-card::before {
	content: "";
	position: absolute;
	inset: 9px;
	border: 1px solid rgba(183, 101, 34, 0.18);
	pointer-events: none;
}

.service-card__top {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 26px;
	padding-bottom: 21px;
	border-bottom: 1px solid var(--line);
}

.service-card__top span {
	color: var(--copper);
	font-size: 1.8rem;
}

.service-card__top p {
	margin: 0;
	color: var(--burgundy);
	font-family: var(--serif);
	font-size: 1.7rem;
}

.service-time {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding-block: 17px;
	border-bottom: 1px solid rgba(75, 23, 36, 0.1);
}

.service-time span {
	display: block;
	color: var(--burgundy);
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.service-time small {
	color: var(--muted);
	font-size: 0.72rem;
}

.service-time strong {
	color: var(--red);
	font-family: var(--serif);
	font-size: 1.23rem;
	font-weight: 400;
	text-align: right;
}

.service-card__note {
	position: relative;
	z-index: 1;
	margin: 22px 0 0;
	color: var(--muted);
	font-size: 0.76rem;
	font-style: italic;
}

.location-section {
	display: grid;
	min-height: 680px;
	grid-template-columns: 1.38fr 0.82fr;
	background: var(--burgundy-deep);
}

.location-photo {
	min-height: 580px;
	overflow: hidden;
}

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

.location-panel {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: clamp(45px, 6vw, 90px);
	color: var(--ivory);
}

.location-panel h2 {
	color: var(--ivory);
	font-size: clamp(3.5rem, 6vw, 6.4rem);
	letter-spacing: -0.05em;
}

.location-panel h2 em {
	color: var(--copper-light);
}

.location-panel > p:not(.eyebrow) {
	max-width: 460px;
	margin: 24px 0 0;
	color: rgba(244, 232, 217, 0.67);
}

.location-panel .button {
	margin-top: 31px;
}

.contact-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.contact-card {
	position: relative;
	display: flex;
	min-height: 355px;
	justify-content: flex-end;
	flex-direction: column;
	padding: 34px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.34);
	overflow: hidden;
	transition: transform 300ms var(--ease), background 300ms ease, color 300ms ease;
}

.contact-card:hover {
	background: var(--burgundy);
	color: #fff;
	transform: translateY(-8px);
}

.contact-card__number {
	position: absolute;
	right: 28px;
	top: 24px;
	color: var(--copper);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.contact-card__icon {
	display: grid;
	width: 59px;
	height: 59px;
	place-items: center;
	margin-bottom: auto;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--red);
	font-size: 1.8rem;
	transition: border-color 300ms ease, color 300ms ease;
}

.contact-card:hover .contact-card__icon {
	border-color: rgba(255, 255, 255, 0.35);
	color: var(--copper-light);
}

.contact-card h3 {
	color: var(--burgundy);
	font-size: 2.15rem;
	transition: color 300ms ease;
}

.contact-card:hover h3 {
	color: #fff;
}

.contact-card p {
	margin: 13px 0 22px;
	color: var(--muted);
	font-size: 0.9rem;
	transition: color 300ms ease;
}

.contact-card:hover p {
	color: rgba(255, 255, 255, 0.68);
}

.contact-card strong {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 17px;
	border-top: 1px solid var(--line);
	color: var(--burgundy);
	font-size: 0.72rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	transition: color 300ms ease, border-color 300ms ease;
}

.contact-card:hover strong {
	border-color: rgba(255, 255, 255, 0.18);
	color: #fff;
}

.contact-card i {
	font-style: normal;
	font-size: 1.1rem;
}

/* Generic content and 404 */
.content-page {
	min-height: 62vh;
	padding-block: 100px;
}

.content-page h1 {
	color: var(--burgundy);
	font-size: clamp(3.3rem, 7vw, 7rem);
}

.entry-content {
	max-width: 800px;
	margin-top: 35px;
}

.not-found {
	display: grid;
	min-height: 70vh;
	place-items: center;
	padding: 80px 20px;
	text-align: center;
}

.not-found strong {
	display: block;
	color: var(--copper);
	font-family: var(--serif);
	font-size: clamp(6rem, 17vw, 13rem);
	font-weight: 400;
	line-height: 0.8;
}

.not-found h1 {
	margin-top: 28px;
	color: var(--burgundy);
	font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.not-found p {
	margin: 18px auto 28px;
	color: var(--muted);
}

/* Footer */
.site-footer {
	padding-block: 80px 26px;
	background: #260b13;
	color: rgba(244, 232, 217, 0.68);
}

.footer-main {
	display: grid;
	grid-template-columns: minmax(270px, 1.4fr) repeat(3, minmax(150px, 0.65fr));
	gap: clamp(35px, 5vw, 80px);
	padding-bottom: 58px;
}

.footer-brand img {
	width: 205px;
	height: 74px;
	object-fit: contain;
	object-position: left center;
}

.footer-brand p {
	max-width: 370px;
	margin: 21px 0 0;
	font-size: 0.9rem;
}

.footer-column {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 9px;
}

.footer-column h2 {
	margin-bottom: 13px;
	color: var(--copper-light);
	font-family: var(--sans);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.footer-column a {
	font-size: 0.85rem;
	transition: color 220ms ease, transform 220ms ease;
}

.footer-column a:hover {
	color: #fff;
	transform: translateX(3px);
}

.footer-column p {
	margin: 0 0 10px;
	font-size: 0.82rem;
}

.footer-column strong {
	color: var(--ivory);
	font-weight: 650;
}

.instagram-link {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--ivory);
}

.instagram-icon {
	font-size: 1.35rem;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 22px;
	border-top: 1px solid rgba(244, 232, 217, 0.13);
	font-size: 0.68rem;
	letter-spacing: 0.04em;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom p:last-child {
	color: var(--copper-light);
	font-family: var(--serif);
	font-size: 0.95rem;
	font-style: italic;
}

.mobile-action-bar {
	display: none;
}

/* Reveal motion */
.js .reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

.js .reveal--delay {
	transition-delay: 100ms;
}

.js .reveal--delay-2 {
	transition-delay: 190ms;
}

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

/* Tablet */
@media (max-width: 1050px) {
	:root {
		--shell: min(100% - 42px, 900px);
	}

	.primary-nav {
		gap: 18px;
	}

	.nav-cta {
		display: none;
	}

	.intro-grid,
	.visit-grid {
		grid-template-columns: 1fr 1fr;
		gap: 55px;
	}

	.intro-visual {
		min-height: 560px;
	}

	.round-note {
		right: -12px;
		width: 116px;
		height: 116px;
	}

	.moment-cards,
	.signature-grid,
	.contact-card-grid {
		gap: 17px;
	}

	.menu-toolbar {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.menu-filters {
		justify-content: flex-start;
	}

	.gallery-strip {
		grid-template-columns: 1.2fr 0.8fr 0.8fr;
	}

	.gallery-strip__item:last-child {
		display: none;
	}

	.location-section {
		grid-template-columns: 1.1fr 0.9fr;
	}

	.footer-main {
		grid-template-columns: 1.25fr repeat(2, 0.7fr);
	}

	.footer-column:last-child {
		grid-column: 2;
	}
}

/* Mobile navigation and layout */
@media (max-width: 820px) {
	:root {
		--shell: calc(100% - 34px);
		--header-height: 72px;
	}

	body {
		padding-bottom: 64px;
	}

	.service-ribbon__track {
		width: max-content;
		max-width: 100%;
		gap: 10px;
		padding-inline: 12px;
		font-size: 0.55rem;
	}

	.service-ribbon__track span:nth-child(n + 3) {
		display: none;
	}

	.site-brand {
		width: 145px;
		height: 50px;
	}

	.menu-toggle {
		display: flex;
	}

	.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
		transform: translateY(4px) rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
		transform: translateY(-4px) rotate(-45deg);
	}

	.js .primary-nav {
		position: fixed;
		left: 0;
		top: var(--mobile-menu-top, var(--header-height));
		display: flex;
		width: 100%;
		height: calc(100dvh - var(--mobile-menu-top, var(--header-height)));
		align-items: flex-start;
		justify-content: center;
		flex-direction: column;
		gap: 6px;
		padding: 45px 34px 100px;
		background: rgba(47, 13, 22, 0.985);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-12px);
		visibility: hidden;
		transition: opacity 260ms ease, transform 300ms var(--ease), visibility 260ms ease;
	}

	.js .primary-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
		visibility: visible;
	}

	html:not(.js) .menu-toggle {
		display: none;
	}

	html:not(.js) .primary-nav {
		position: absolute;
		left: 0;
		top: 100%;
		display: flex;
		width: 100%;
		align-items: flex-start;
		flex-direction: column;
		padding: 20px 24px;
		background: var(--burgundy-deep);
	}

	.nav-link {
		width: 100%;
		padding: 14px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		font-family: var(--serif);
		font-size: clamp(2rem, 9vw, 3.2rem);
		font-weight: 400;
		letter-spacing: -0.02em;
		text-transform: none;
	}

	.nav-link::after {
		display: none;
	}

	.nav-cta {
		display: inline-flex;
		margin-top: 20px;
	}

	.home-hero,
	.home-hero__content {
		min-height: min(800px, calc(100svh - var(--header-height)));
	}

	.home-hero__content {
		justify-content: flex-end;
		padding-block: 85px 135px;
	}

	.hero-overlay {
		background: linear-gradient(0deg, rgba(35, 8, 15, 0.94) 0%, rgba(39, 9, 17, 0.58) 58%, rgba(32, 10, 13, 0.15));
	}

	.home-hero h1 {
		font-size: clamp(3.5rem, 15.5vw, 6rem);
		line-height: 0.88;
	}

	.hero-copy {
		margin-top: 24px;
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.hero-actions {
		margin-top: 26px;
	}

	.hero-hours {
		margin-top: 25px;
		font-size: 0.61rem;
	}

	.hero-controls {
		right: 18px;
		bottom: 23px;
	}

	.hero-arrow {
		display: none;
	}

	.hero-pause {
		width: 44px;
		height: 44px;
	}

	.scroll-cue {
		display: none;
	}

	.intro-grid,
	.visit-grid,
	.gallery-teaser__header,
	.gallery-page__intro {
		grid-template-columns: 1fr;
	}

	.intro-grid,
	.visit-grid {
		gap: 65px;
	}

	.intro-copy h2,
	.section-heading h2,
	.gallery-teaser h2,
	.visit-copy h2,
	.gallery-page__intro h2,
	.contact-cards h2,
	.menu-closing h2 {
		font-size: clamp(2.65rem, 12vw, 4.7rem);
	}

	.intro-visual {
		min-height: 560px;
	}

	.framed-photo--main {
		left: 6%;
	}

	.framed-photo--float {
		left: -1%;
		width: 47%;
	}

	.round-note {
		right: 0;
		top: 48px;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.moment-cards,
	.signature-grid,
	.contact-card-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.moment-card__image,
	.signature-card__image {
		height: min(480px, 104vw);
	}

	.gallery-teaser__header {
		gap: 24px;
	}

	.gallery-strip {
		height: 560px;
		min-height: 0;
		grid-template-columns: 1.2fr 0.8fr;
		grid-template-rows: repeat(2, 1fr);
	}

	.gallery-strip__item:first-child {
		grid-row: 1 / -1;
	}

	.gallery-strip__item:nth-child(3) {
		display: none;
	}

	.visit-banner {
		min-height: 650px;
	}

	.visit-banner__overlay {
		background: linear-gradient(0deg, rgba(39, 8, 17, 0.94), rgba(39, 8, 17, 0.45));
	}

	.visit-banner h2 {
		font-size: clamp(3.25rem, 13vw, 5.8rem);
	}

	.page-hero {
		min-height: 535px;
		place-items: end start;
	}

	.page-hero__content {
		padding-block: 78px 70px;
	}

	.page-hero h1 {
		font-size: clamp(3.5rem, 15vw, 6.2rem);
	}

	.page-hero__overlay {
		background: linear-gradient(0deg, rgba(42, 9, 18, 0.94), rgba(42, 9, 18, 0.3));
	}

	.menu-toolbar-wrap {
		top: var(--header-height);
	}

	.menu-toolbar {
		width: 100%;
		gap: 10px;
		padding: 12px 17px 14px;
	}

	.menu-search {
		height: 45px;
	}

	.menu-filters {
		overflow-x: auto;
		padding-bottom: 3px;
		scrollbar-width: none;
	}

	.menu-filters::-webkit-scrollbar,
	.gallery-filters::-webkit-scrollbar {
		display: none;
	}

	.menu-filters button,
	.gallery-filters button {
		min-height: 44px;
		padding-inline: 14px;
	}

	.menu-content {
		padding-block: 42px 95px;
	}

	.menu-grid,
	.menu-section[data-category="brunchs"] .menu-items {
		grid-template-columns: 1fr;
	}

	.menu-section[data-category="brunchs"] {
		grid-column: auto;
	}

	.menu-section {
		padding: 27px 22px 31px;
	}

	.menu-section__header {
		gap: 15px;
	}

	.schedule-pill {
		font-size: 0.53rem;
	}

	.menu-item h3 {
		font-size: 0.81rem;
	}

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

	.menu-closing__inner > div:last-child {
		justify-content: flex-start;
	}

	.gallery-filters {
		overflow-x: auto;
		padding-bottom: 4px;
	}

	.photo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.photo-card,
	.photo-card:nth-child(7n + 1),
	.photo-card:nth-child(7n + 5) {
		grid-column: span 1;
	}

	.photo-card:nth-child(4n + 1) {
		grid-column: 1 / -1;
	}

	.photo-card figcaption {
		display: block;
	}

	.photo-card figcaption p {
		margin-top: 3px;
		font-size: 0.87rem;
	}

	.photo-card__zoom {
		opacity: 1;
		transform: none;
	}

	.lightbox__panel {
		padding: 68px 17px;
	}

	.lightbox figure {
		width: 100%;
		height: calc(100dvh - 136px);
	}

	.lightbox__arrow {
		top: auto;
		bottom: 16px;
	}

	.lightbox__arrow--prev {
		left: calc(50% - 62px);
	}

	.lightbox__arrow--next {
		right: calc(50% - 62px);
	}

	.lightbox__close {
		right: 15px;
		top: 12px;
	}

	.social-callout__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.social-callout__inner > div {
		padding-left: 0;
	}

	.social-callout__icon {
		position: static;
		display: block;
		margin-bottom: 17px;
		transform: none;
	}

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

	.location-photo {
		min-height: 450px;
	}

	.location-panel {
		min-height: 490px;
	}

	.contact-card {
		min-height: 315px;
	}

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

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-column:last-child {
		grid-column: auto;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.mobile-action-bar {
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 90;
		display: grid;
		width: 100%;
		height: 64px;
		grid-template-columns: repeat(3, 1fr);
		border-top: 1px solid rgba(244, 232, 217, 0.18);
		background: rgba(47, 13, 22, 0.97);
		box-shadow: 0 -8px 30px rgba(32, 7, 14, 0.2);
		backdrop-filter: blur(18px);
	}

	.mobile-action-bar a {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 2px;
		color: var(--ivory);
		font-size: 0.59rem;
		font-weight: 800;
		letter-spacing: 0.06em;
		text-transform: uppercase;
	}

	.mobile-action-bar a + a {
		border-left: 1px solid rgba(244, 232, 217, 0.13);
	}

	.mobile-action-bar a > span:first-child {
		color: var(--copper-light);
		font-size: 1.12rem;
		line-height: 1;
	}
}

@media (max-width: 540px) {
	.section {
		padding-block: 78px;
	}

	.eyebrow {
		font-size: 0.62rem;
		letter-spacing: 0.19em;
	}

	.home-hero__content {
		padding-bottom: 115px;
	}

	.hero-actions,
	.visit-banner__actions,
	.visit-buttons {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-actions .button,
	.visit-banner__actions .button,
	.visit-buttons .button {
		width: 100%;
	}

	.hero-hours {
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 7px;
	}

	.intro-visual {
		min-height: 455px;
	}

	.framed-photo--main {
		bottom: 48px;
	}

	.framed-photo--float {
		height: 175px;
	}

	.round-note {
		width: 94px;
		height: 94px;
	}

	.round-note span {
		font-size: 0.95rem;
	}

	.round-note b {
		font-size: 0.8rem;
	}

	.gallery-strip {
		height: 430px;
	}

	.page-hero__content > p:not(.eyebrow) {
		font-size: 0.95rem;
	}

	.menu-status {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
	}

	.menu-section__header {
		align-items: flex-start;
		flex-direction: column;
	}

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

	.photo-card,
	.photo-card:nth-child(7n + 1),
	.photo-card:nth-child(7n + 5),
	.photo-card:nth-child(4n + 1) {
		grid-column: auto;
	}

	.photo-card button,
	.photo-card:nth-child(7n + 3) button {
		aspect-ratio: 1.15;
	}

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

	.footer-brand,
	.footer-column:last-child {
		grid-column: auto;
	}
}

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

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

	.js .reveal {
		opacity: 1;
		transform: none;
	}

	.hero-pause {
		display: none;
	}
}
