

:root {
	--green:       #56654a;
	--green-deep:  #47543d;
	--green-dark:  #39442e;
	--green-pale:  #e3e7d6;
	--brass:       #a98f52;
	--brass-deep:  #7c6836;
	--brass-soft:  #d6c79b;
	--sage-light:  #dfe5cd;
	--charcoal:    #2c2a24;
	--ink:         #3a382f;
	--cream:       #f4f0e4;
	--cream-2:     #ece7d8;
	--paper:       #ffffff;
	--line:        #ded8c6;
	--muted:       #6f6b5c;

	--serif:  "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--script: "Dancing Script", "Segoe Script", cursive;
	--sans:   "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--maxw: 1240px;
	--radius: 8px;
	--radius-sm: 4px;

	--shadow: 0 22px 54px -24px rgba(56, 52, 34, .35);
	--shadow-sm: 0 10px 28px -16px rgba(56, 52, 34, .28);
	--ease: cubic-bezier(.22, .61, .36, 1);
	--dur: .25s;
}

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

html { scroll-behavior: smooth; }

body {
	font-family: var(--sans);
	color: var(--ink);
	background: var(--cream);
	line-height: 1.72;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body.loading, body.menu-locked { overflow: hidden; }
p { text-wrap: pretty; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a, button { cursor: pointer; touch-action: manipulation; }

:focus-visible { outline: 3px solid var(--green-deep); outline-offset: 3px; border-radius: 2px; }
.topbar :focus-visible,
.gf-band :focus-visible,
.footer-bottom :focus-visible,
.mobile-menu :focus-visible,
.show-card :focus-visible,
.catering :focus-visible,
.mobile-bar :focus-visible { outline-color: var(--cream); }

::selection { background: var(--green); color: var(--cream); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 780px; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(48px, 6vw, 88px) 0; }
section { scroll-margin-top: 70px; }

h1, h2, h3, h4 {
	font-family: var(--serif);
	font-weight: 600;
	line-height: 1.1;
	color: var(--charcoal);
	text-wrap: balance;
}
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h2 em, h1 em { font-style: italic; font-weight: 500; color: var(--green); }
h1:has(em), h2:has(em) { line-height: 1.16; padding-bottom: .05em; }
.gf-band h2 em, .catering h1 em, .catering h2 em { color: var(--sage-light); }
h3 { font-size: 1.45rem; }

.skip-link {
	position: fixed; top: -60px; left: 16px; z-index: 3000;
	background: var(--charcoal); color: #fff; padding: 10px 18px; border-radius: 6px;
	font-size: .85rem; transition: top .25s var(--ease);
}
.skip-link:focus-visible { top: 14px; }

.ico { width: 1.05em; height: 1.05em; flex: none; }
.heart { color: var(--green); width: .8em; height: .8em; }

/* Handwritten accents */
.script-accent {
	font-family: var(--script);
	font-weight: 600;
	font-size: clamp(1.6rem, 2.4vw, 2.1rem);
	line-height: 1.2;
	color: var(--green);
	letter-spacing: .01em;
}
.script-accent-light { color: var(--sage-light); }

.eyebrow {
	display: flex; align-items: center; gap: 10px;
	font-family: var(--script);
	font-weight: 600;
	font-size: clamp(1.5rem, 2.2vw, 1.9rem);
	line-height: 1.2;
	color: var(--green);
	margin-bottom: 8px;
}
.eyebrow-rule { display: none; }
.eyebrow-light { color: var(--sage-light); }
.section-head.center .eyebrow { justify-content: center; }

.section-head { max-width: 660px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.split {
	max-width: none; display: flex; align-items: flex-end; justify-content: space-between;
	gap: 48px;
}
.section-head.split > div { max-width: 620px; }
.section-side {
	max-width: 300px; font-size: .95rem; color: var(--muted);
	padding-bottom: 10px; border-bottom: 2px solid var(--green);
}

/* Buttons — stamped label style */
.btn {
	position: relative;
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	font-family: var(--sans); font-weight: 700; font-size: .76rem;
	text-transform: uppercase; letter-spacing: .12em;
	padding: 15px 26px; border-radius: 3px;
	border: 1px solid transparent; white-space: nowrap;
	transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
		border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn::after {
	content: ""; position: absolute; inset: 3px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 1px; pointer-events: none;
}
.btn-solid { background: var(--green); color: #fff; }
.btn-solid:hover { background: var(--green-deep); }
.btn-solid.btn-amber { background: var(--brass); }
.btn-solid.btn-amber:hover { background: var(--brass-deep); }
.btn-outline { background: transparent; color: var(--green-deep); border-color: var(--green); }
.btn-outline::after { border-color: transparent; }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-ghost { background: rgba(255, 255, 255, .94); color: var(--green-dark); }
.btn-ghost::after { border-color: rgba(57, 68, 46, .3); }
.btn-ghost:hover { background: #fff; }
.btn-sm { padding: 11px 18px; font-size: .7rem; }
.btn-lg { padding: 18px 34px; font-size: .82rem; }
.btn .ico { width: 1.25em; height: 1.25em; }
.btn-arrow { transition: transform .3s var(--ease); }

@media (hover: hover) and (pointer: fine) {
	.btn:hover .btn-arrow { transform: translateX(4px); }
	.gallery-item:hover img { transform: scale(1.04); }
	.contact-link:hover { transform: translateX(4px); }
	.polaroid:hover { rotate: .8deg; }
}

/* Intro curtain (front page, once a day) */
.preloader {
	position: fixed; inset: 0; z-index: 5000;
	display: flex; align-items: center; justify-content: center;
	background: var(--cream);
}
.pre-inner { text-align: center; position: relative; z-index: 2; padding: 0 24px; }
.pre-script {
	font-family: var(--script); font-weight: 600;
	font-size: clamp(1.7rem, 3vw, 2.2rem); line-height: 1.3;
	color: var(--green);
	overflow: hidden;
}
.pre-script span { display: inline-block; transform: translateY(130%); }
.pre-word {
	font-family: var(--serif); font-weight: 600; color: var(--charcoal);
	font-size: clamp(2.7rem, 8vw, 4.6rem); line-height: 1.06;
	margin-top: 2px;
}
.pre-line { display: block; overflow: hidden; }
.pre-line span { display: block; transform: translateY(112%); }
.pre-divider {
	display: flex; align-items: center; justify-content: center; gap: 12px;
	margin-top: 20px; color: var(--green);
	opacity: 0; transform: translateY(8px);
}
.pre-divider span { width: 0; height: 1px; background: var(--green); opacity: .55; }
.pre-curtain { position: absolute; inset: 0; z-index: 1; background: var(--green-dark); transform: translateY(101%); }

.preloader .pre-script span,
.preloader .pre-line span { transition: transform .7s var(--ease); }
.preloader.play .pre-script span { transform: translateY(0); transition-delay: .08s; }
.preloader.play .pre-line span { transform: translateY(0); }
.preloader.play .pre-line:nth-child(1) span { transition-delay: .18s; }
.preloader.play .pre-line:nth-child(2) span { transition-delay: .28s; }
.preloader.play .pre-divider { opacity: 1; transform: none; transition: opacity .5s var(--ease) .48s, transform .5s var(--ease) .48s; }
.preloader.play .pre-divider span { width: 44px; transition: width .5s var(--ease) .5s; }

.preloader.done .pre-inner { opacity: 0; transform: translateY(-20px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.preloader.done .pre-curtain { transform: translateY(0); transition: transform .45s var(--ease) .1s; }
.preloader.done { transform: translateY(-101%); transition: transform .55s var(--ease) .5s, visibility 0s linear 1.1s; visibility: hidden; }

/* Offer bar (in flow, above topbar) */
.offer-bar { position: relative; background: var(--brass); color: #fff; }
.offer-bar.dismissed { display: none; }
.offer-bar-inner { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; padding: 9px 44px; font-size: .85rem; }
.offer-bar-badge { text-transform: uppercase; letter-spacing: .14em; font-size: .62rem; font-weight: 700; background: rgba(255, 255, 255, .2); padding: 3px 10px; border-radius: 3px; }
.offer-bar-title { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; }
.offer-bar-count { font-variant-numeric: tabular-nums; font-weight: 600; }
.offer-bar-link { text-decoration: underline; font-weight: 700; }
.offer-bar-close { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: 0; color: inherit; font-size: 1.4rem; line-height: 1; padding: 0 8px; }

/* Top utility bar */
.topbar { background: var(--green-dark); color: rgba(255, 255, 255, .88); font-size: .78rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 8px; padding-bottom: 8px; }
.topbar-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item .ico { color: var(--sage-light); }
a.topbar-item:hover { color: #fff; }
.topbar-social { display: flex; align-items: center; gap: 6px; }
.topbar-social a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 28px; height: 28px; border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	transition: background var(--dur) var(--ease);
}
.topbar-social a:hover { background: rgba(255, 255, 255, .26); }
.topbar-social .ico { width: .95em; height: .95em; }

/* Header */
.site-header { background: var(--paper); border-bottom: 1px solid var(--line); position: relative; z-index: 960; }
.header-inner { display: flex; align-items: center; gap: 24px; padding-top: 16px; padding-bottom: 16px; }
.brand { flex: none; }
.brand-mark { height: 96px; width: auto; }
.header-right { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.header-ctas { display: flex; gap: 10px; }

.nav { display: flex; gap: 26px; }
.nav a {
	font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
	color: var(--ink); position: relative; padding: 5px 0;
	transition: color var(--dur) var(--ease);
}
.nav a::after {
	content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
	background: var(--green);
	transform: scaleX(0); transform-origin: 100% 50%;
	transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--green-deep); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: 0 50%; }
.nav a.active { color: var(--green-deep); }

.nav-toggle {
	display: none; position: relative; z-index: 1001;
	width: 48px; height: 48px; align-items: center; justify-content: center;
	flex-direction: column; gap: 7px;
	background: none; border: 0; margin-left: auto;
}
.nav-toggle-line {
	width: 26px; height: 2px; background: var(--charcoal); border-radius: 2px;
	transition: transform .35s var(--ease), background .35s var(--ease);
}
body.menu-locked .nav-toggle-line:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
body.menu-locked .nav-toggle-line:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu { position: fixed; inset: 0; z-index: 950; visibility: hidden; transition: visibility 0s linear .4s; }
.mobile-menu-bg {
	position: absolute; inset: 0; background: var(--green-dark);
	opacity: 0;
	transition: opacity .3s var(--ease);
}
.mobile-menu-inner {
	position: relative; height: 100%;
	display: flex; flex-direction: column; justify-content: center;
	padding: 90px 36px 40px;
}
.mobile-menu-inner > a {
	font-family: var(--serif); font-weight: 600; font-size: clamp(1.9rem, 7.5vw, 2.6rem);
	color: var(--cream); padding: 9px 0;
	opacity: 0; transform: translateY(18px);
}
.mobile-menu-inner > a.active { color: var(--sage-light); }
.mobile-menu-inner .mobile-call {
	font-family: var(--sans); font-size: 1rem; font-weight: 600;
	color: var(--sage-light); margin-top: 26px;
	display: flex; align-items: center; gap: 10px;
}
.mobile-menu-foot {
	position: absolute; bottom: 30px; left: 36px;
	font-size: .8rem; color: rgba(244, 240, 228, .55);
	opacity: 0;
}
.mobile-menu.open { visibility: visible; transition-delay: 0s; }
.mobile-menu.open .mobile-menu-bg { opacity: 1; }
.mobile-menu.open .mobile-menu-inner > a {
	opacity: 1; transform: translateY(0);
	transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mobile-menu.open .mobile-menu-inner > a:nth-child(1) { transition-delay: .08s; }
.mobile-menu.open .mobile-menu-inner > a:nth-child(2) { transition-delay: .13s; }
.mobile-menu.open .mobile-menu-inner > a:nth-child(3) { transition-delay: .18s; }
.mobile-menu.open .mobile-menu-inner > a:nth-child(4) { transition-delay: .23s; }
.mobile-menu.open .mobile-menu-inner > a:nth-child(5) { transition-delay: .28s; }
.mobile-menu.open .mobile-menu-inner > a:nth-child(6) { transition-delay: .33s; }
.mobile-menu.open .mobile-menu-inner > a:nth-child(7) { transition-delay: .38s; }
.mobile-menu.open .mobile-menu-foot { opacity: 1; transition: opacity .35s ease .4s; }

/* Hero */
.hero {
	position: relative;
	min-height: clamp(540px, 72vh, 780px);
	display: flex; align-items: center;
	padding: clamp(56px, 8vw, 96px) 0;
	color: #fff; overflow: hidden;
	background: var(--green-dark);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(92deg, rgba(26, 25, 15, .82) 0%, rgba(26, 25, 15, .55) 42%, rgba(26, 25, 15, .16) 78%, rgba(26, 25, 15, .05) 100%),
		linear-gradient(180deg, rgba(26, 25, 15, .25) 0%, transparent 22%);
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }

.hero-title {
	color: #fff;
	font-size: clamp(2.4rem, 5.2vw, 4.3rem);
	line-height: 1.08;
	margin-bottom: 18px;
	text-shadow: 0 2px 30px rgba(0, 0, 0, .3);
}
.hero-title > span { display: block; }
.hero-title .hero-script {
	font-family: var(--script);
	font-weight: 600;
	font-size: clamp(2.3rem, 5vw, 4.1rem);
	color: var(--sage-light);
	padding-top: .08em;
}
.hero-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; color: var(--sage-light); }
.hero-divider span { width: 54px; height: 1px; background: rgba(255, 255, 255, .5); }
.hero-divider .heart { color: var(--sage-light); }
.hero-lead {
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	max-width: 520px; color: rgba(255, 255, 255, .94);
	margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

body.loading .hero-inner > * { opacity: 0; }
body.loaded .hero-inner > * { opacity: 0; animation: heroRise .6s var(--ease) forwards; }
body.loaded .hero-inner > *:nth-child(1) { animation-delay: .08s; }
body.loaded .hero-inner > *:nth-child(2) { animation-delay: .22s; }
body.loaded .hero-inner > *:nth-child(3) { animation-delay: .34s; }
body.loaded .hero-inner > *:nth-child(4) { animation-delay: .46s; }
@keyframes heroRise {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Reveal on scroll */
[data-reveal] {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .55s var(--ease), transform .55s var(--ease);
	transition-delay: var(--rd, 0ms);
}
[data-reveal="left"]  { transform: translateX(-24px); }
[data-reveal="right"] { transform: translateX(24px); }
[data-reveal].in { opacity: 1; transform: none; }

/* Welcome */
.welcome { position: relative; overflow: hidden; }
.welcome-leaf {
	position: absolute; left: -26px; top: 12%;
	height: 320px; width: auto;
	color: rgba(86, 101, 74, .22);
	pointer-events: none;
}
.welcome-grid {
	display: grid; grid-template-columns: 1.05fr .95fr;
	gap: clamp(44px, 6vw, 90px); align-items: center;
}
.welcome-copy .script-accent { margin-bottom: 2px; }
.welcome-copy h2 { margin-bottom: 20px; }
.welcome-copy p { margin-bottom: 16px; max-width: 560px; }
.welcome-copy strong { color: var(--charcoal); }
.welcome-cta { padding-top: 8px; }

.polaroid {
	justify-self: center;
	width: min(100%, 460px);
	background: #fff;
	padding: 16px 16px 14px;
	border: 1px solid #efece3;
	box-shadow: var(--shadow);
	rotate: 2.4deg;
	transition: rotate .4s var(--ease), box-shadow .4s var(--ease);
}
.polaroid-img { background: var(--cream-2); }
.polaroid-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.polaroid-caption {
	font-family: var(--script); font-weight: 600;
	font-size: clamp(1.4rem, 2vw, 1.7rem);
	color: var(--charcoal); text-align: center;
	padding-top: 14px;
	display: flex; align-items: center; justify-content: center; gap: 10px;
}

/* Feature strip */
.features { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.features-grid { display: grid; grid-template-columns: repeat(5, 1fr); padding-top: clamp(36px, 4vw, 56px); padding-bottom: clamp(36px, 4vw, 56px); }
.feature { text-align: center; padding: 6px 22px; }
.feature + .feature { border-left: 1px solid var(--line); }
.feature-ico { display: inline-flex; color: var(--green); }
.feature-ico svg { width: 38px; height: 38px; }
.feature-title {
	font-family: var(--sans); font-size: .8rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: .13em;
	color: var(--charcoal); margin: 14px 0 8px;
}
.feature-text { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* Photo showcase cards */
.show-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.show-card {
	display: grid; grid-template-columns: .82fr 1.18fr;
	background: var(--green); color: #fff;
	border-radius: var(--radius); overflow: hidden;
	box-shadow: var(--shadow-sm);
	min-height: 252px;
}
.show-card-img { position: relative; }
.show-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.show-card-body { padding: 26px 24px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.show-script { font-family: var(--script); font-weight: 600; font-size: 1.55rem; line-height: 1.15; color: var(--sage-light); }
.show-card-body h3 { color: #fff; font-size: 1.6rem; margin: 2px 0 8px; }
.show-text { font-size: .87rem; color: rgba(255, 255, 255, .88); line-height: 1.6; margin-bottom: 16px; }
.show-card .btn { margin-top: auto; }

/* Gluten-free band */
.gf-band { background: var(--green-dark); color: #fff; text-align: center; }
.gf-inner { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.gf-band h2 { color: #fff; margin: 4px 0 14px; }
.gf-body { color: rgba(255, 255, 255, .85); max-width: 620px; }
.gf-quote { margin-top: 30px; }
.gf-quote p {
	font-family: var(--serif); font-style: italic; font-weight: 500;
	font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.45;
	color: var(--sage-light);
}
.gf-quote cite { display: block; font-family: var(--sans); font-style: normal; font-size: .82rem; color: rgba(255, 255, 255, .6); margin-top: 10px; }

/* Reviews */
.reviews { background: var(--paper); }
.reviews-title {
	font-family: var(--script); font-weight: 600;
	font-size: clamp(2.1rem, 3.6vw, 2.8rem);
	color: var(--charcoal);
	display: flex; align-items: center; gap: 14px;
	margin-bottom: 44px;
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: start; }
.reviews-grid:has(.fb-card) { grid-template-columns: repeat(3, 1fr) 290px; }
.review { padding: 0 28px; }
.review:first-child { padding-left: 0; }
.review + .review { border-left: 1px solid var(--line); }
.stars { display: flex; gap: 3px; color: var(--green); margin-bottom: 14px; }
.stars svg { width: 15px; height: 15px; }
.review p { font-size: .95rem; line-height: 1.7; color: var(--ink); margin-bottom: 16px; }
.review cite { font-style: normal; font-size: .88rem; font-weight: 700; color: var(--charcoal); }
.review-feature { background: var(--green-pale); border: 0; border-radius: var(--radius); padding: 26px; }
.review-feature + .review { border-left: 0; }

.fb-card {
	margin-left: 28px;
	background: var(--green-pale);
	border-radius: var(--radius);
	padding: 30px 26px;
	text-align: center;
	display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.fb-card .heart { width: 1.4em; height: 1.4em; }
.fb-card-title {
	font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
	color: var(--green-dark); line-height: 1.55;
}
.fb-card-text { font-size: .88rem; color: var(--ink); }
.fb-card-link {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--green); color: #fff;
	margin-top: 6px;
	transition: background var(--dur) var(--ease);
}
.fb-card-link:hover { background: var(--green-deep); }
.fb-card-link .ico { width: 1.2em; height: 1.2em; }

.reviews-foot { text-align: center; margin-top: 48px; font-size: .88rem; color: var(--muted); }

/* Footer */
.site-footer { background: var(--cream-2); border-top: 1px solid var(--line); }
.footer-grid {
	display: grid;
	grid-template-columns: 1.05fr .8fr .65fr 1fr .95fr;
	gap: clamp(28px, 3.5vw, 44px);
	padding-top: clamp(48px, 6vw, 72px);
	padding-bottom: clamp(40px, 5vw, 60px);
}
.footer-mark { height: 120px; width: auto; }
.footer-script {
	font-family: var(--script); font-weight: 600;
	font-size: 1.55rem; line-height: 1.25;
	color: var(--green); margin-top: 12px; max-width: 220px;
}
.footer-col h4 {
	font-family: var(--sans); font-size: .76rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: .16em;
	color: var(--charcoal); margin-bottom: 14px;
}
.footer-col p { font-size: .92rem; line-height: 1.9; margin-bottom: 12px; }
.footer-col a:hover { color: var(--green-deep); text-decoration: underline; }
.footer-hours { font-variant-numeric: tabular-nums; }
.footer-links nav a { display: block; font-size: .92rem; padding: 3px 0; }
.footer-links nav a:hover, .footer-links nav a.active { color: var(--green-deep); }
.footer-dir { padding-top: 4px; }
.footer-dir .btn:hover { text-decoration: none; color: #fff; }
.footer-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 220px; box-shadow: var(--shadow-sm); }
.footer-map iframe { width: 100%; height: 100%; min-height: 220px; border: 0; display: block; filter: saturate(.9); }

.footer-status, .visit-status {
	display: inline-flex; align-items: center; gap: 9px;
	font-size: .85rem; font-weight: 600;
	color: var(--green-deep);
}
.visit-status {
	background: rgba(86, 101, 74, .1);
	border: 1px solid rgba(86, 101, 74, .28);
	padding: 8px 16px; border-radius: 3px; margin-bottom: 26px;
}
.footer-status.is-closed, .visit-status.is-closed { color: var(--brass-deep); }
.visit-status.is-closed { background: rgba(169, 143, 82, .12); border-color: rgba(169, 143, 82, .3); }
.footer-status .pulse, .visit-status .pulse {
	width: 8px; height: 8px; border-radius: 50%; background: #5f9c6d;
	box-shadow: 0 0 0 0 rgba(95, 156, 109, .5);
	animation: pulse 2s infinite;
	display: inline-block; flex: none;
}
.footer-status.is-closed .pulse, .visit-status.is-closed .pulse { background: var(--brass); box-shadow: 0 0 0 0 rgba(169, 143, 82, .5); }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(95, 156, 109, 0); } 100% { box-shadow: 0 0 0 0 rgba(95, 156, 109, 0); } }

.footer-bottom { background: var(--green-dark); color: rgba(255, 255, 255, .75); padding: 15px 0; font-size: .8rem; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-bottom a { color: var(--sage-light); }
.footer-bottom a:hover { color: #fff; text-decoration: underline; }

/* Mobile quick bar */
.mobile-bar { display: none; }

/* Page hero (inner pages) */
.page-hero { background: var(--paper); border-bottom: 1px solid var(--line); padding: clamp(44px, 6vw, 72px) 0 clamp(26px, 4vw, 44px); }
.page-hero h1 { font-size: clamp(2.4rem, 5.4vw, 3.8rem); color: var(--charcoal); }
.page-hero-lead { max-width: 660px; margin-top: 12px; color: var(--muted); font-size: 1.02rem; }
.page-hero-lead p { margin: 0; }

/* Offers */
.offers { background: var(--cream); }
.offer-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.offer-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--green); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.offer-card-img { aspect-ratio: 16 / 9; overflow: hidden; }
.offer-card-img img { width: 100%; height: 100%; object-fit: cover; }
.offer-card-body { padding: 24px 26px 26px; }
.offer-card-badge { display: inline-block; text-transform: uppercase; letter-spacing: .14em; font-size: .64rem; font-weight: 700; color: var(--green-deep); background: var(--green-pale); padding: 5px 12px; border-radius: 3px; margin-bottom: 12px; }
.offer-card h3 { margin-bottom: 8px; }
.offer-card-text { color: var(--muted); font-size: .95rem; }
.offer-card-text p { margin: 0; }
.offer-card-count { margin-top: 14px; font-weight: 600; color: var(--brass-deep); font-variant-numeric: tabular-nums; }

/* Story / About */
.story { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: 1.04fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.story-media { position: relative; }
.frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; position: relative; }
.frame img { width: 100%; height: 116%; object-fit: cover; }
.story-badge {
	position: absolute; bottom: -28px; right: -14px;
	background: var(--green); color: #fff;
	border-radius: var(--radius); padding: 20px 26px; text-align: center;
	box-shadow: var(--shadow);
}
.story-badge::before {
	content: ""; position: absolute; inset: 6px;
	border: 1px dashed rgba(255, 255, 255, .35); border-radius: 4px;
	pointer-events: none;
}
.story-badge-num { display: block; font-family: var(--serif); font-weight: 600; font-size: 2rem; line-height: 1.1; }
.story-badge-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; opacity: .85; }
.story-copy h2 { margin-bottom: 22px; }
.story-copy p { margin-bottom: 16px; }
.story-stats { display: flex; gap: 34px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.story-stats strong { display: block; font-family: var(--serif); font-weight: 600; font-size: 1.9rem; color: var(--green); }
.story-stats strong small { font-size: .9rem; color: var(--muted); }
.story-stats span { font-size: .82rem; color: var(--muted); }

/* Menu page */
.menu-jump {
	position: sticky; top: 0; z-index: 700;
	background: rgba(244, 240, 228, .95); backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}
.menu-jump-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap; }
.menu-jump-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.menu-jump-list a {
	display: inline-block; font-size: .78rem; font-weight: 700; white-space: nowrap;
	text-transform: uppercase; letter-spacing: .08em;
	padding: 8px 15px; border: 1px solid var(--line); border-radius: 3px;
	background: var(--paper); color: var(--ink);
	transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.menu-jump-list a:hover, .menu-jump-list a.active { background: var(--green); color: #fff; border-color: var(--green); }
.menu-gf-toggle { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; font-size: .85rem; font-weight: 600; color: var(--green-deep); white-space: nowrap; }
.menu-gf-toggle input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.menu-gf-track { width: 42px; height: 24px; border-radius: 40px; background: var(--line); position: relative; flex: none; transition: background .25s var(--ease); }
.menu-gf-track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .3); transition: transform .25s var(--ease); }
.menu-gf-toggle input:checked + .menu-gf-track { background: var(--green); }
.menu-gf-toggle input:checked + .menu-gf-track::after { transform: translateX(18px); }
.menu-gf-toggle input:focus-visible + .menu-gf-track { outline: 3px solid var(--green-deep); outline-offset: 2px; }

.menu-full { background: var(--cream); }
.menu-cat { margin-bottom: clamp(40px, 6vw, 64px); scroll-margin-top: 90px; }
.menu-cat-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; border-bottom: 2px solid var(--green); padding-bottom: 12px; }
.menu-cat-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.menu-cat-tag { font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; color: var(--green-deep); }
.menu-cat-desc { color: var(--muted); margin: 14px 0 4px; max-width: 660px; }
.dish-list { list-style: none; }
.dish { display: block; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.dish-row { display: flex; align-items: baseline; gap: 12px; }
.dish-name { font-family: var(--serif); font-weight: 600; font-size: 1.28rem; color: var(--charcoal); margin: 0; display: inline-flex; align-items: baseline; gap: 8px; flex: 0 1 auto; }
.dish-leader { flex: 1 1 auto; min-width: 24px; align-self: center; border-bottom: 2px dotted var(--line); }
.dish-price { font-family: var(--serif); font-size: 1.22rem; color: var(--green-deep); font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; flex: none; }
.dish-gf { font-family: var(--sans); font-size: .58rem; font-weight: 700; letter-spacing: .05em; color: var(--green-deep); background: var(--green-pale); border: 1px solid rgba(86, 101, 74, .3); padding: 2px 6px; border-radius: 3px; }
.dish-desc { color: var(--muted); font-size: .92rem; margin-top: 4px; max-width: 600px; }
.dish-tag { display: inline-block; font-size: .64rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--brass-deep); margin-top: 6px; }
.dish.is-hidden, .menu-cat.is-hidden { display: none; }
.menu-cta { text-align: center; margin-top: 50px; }
.menu-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 6px; }
.menu-empty { text-align: center; color: var(--muted); }
.menu-empty--gf { padding: 30px 0; }

/* Gallery */
.gallery-grid { display: block; column-count: 3; column-gap: 16px; }
.gallery-item { margin: 0 0 16px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: block; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; break-inside: avoid; }
.gallery-item img { width: 100%; height: auto; transition: transform .6s var(--ease); }
.gallery-item:focus-visible { outline: 3px solid var(--green-deep); outline-offset: 3px; }
.gallery-hint { text-align: center; color: var(--muted); font-size: .88rem; margin-top: 26px; }
.gallery-content img { cursor: zoom-in; }

.svk-lightbox {
	position: fixed; inset: 0; z-index: 5000;
	display: flex; align-items: center; justify-content: center; padding: 24px;
	background: rgba(30, 29, 21, .92); opacity: 0; transition: opacity .3s var(--ease);
}
.svk-lightbox.open { opacity: 1; }
.svk-lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .6); }
.svk-lightbox-close { position: absolute; top: 16px; right: 22px; background: none; border: 0; color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; padding: 4px 10px; }
.svk-lightbox-close:focus-visible { outline: 3px solid var(--cream); outline-offset: 2px; }

/* Catering page */
.catering {
	position: relative; color: #fff; overflow: hidden;
	padding: clamp(80px, 10vw, 150px) 0;
}
.catering-media { position: absolute; inset: -14% 0; }
.catering-media img { width: 100%; height: 100%; object-fit: cover; }
.catering-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(100deg, rgba(31, 37, 22, .93) 0%, rgba(31, 37, 22, .74) 48%, rgba(31, 37, 22, .32) 100%);
}
.catering-inner { position: relative; z-index: 2; max-width: 640px; }
.catering-inner h1, .catering-inner h2 { color: #fff; margin-bottom: 20px; }
.catering--page .catering-inner h1 { font-size: clamp(2.3rem, 5.6vw, 4rem); }
.catering-inner > p, .catering-copy p { color: rgba(255, 255, 255, .88); margin-bottom: 16px; }
.catering-copy a { color: var(--sage-light); text-decoration: underline; }
.cater-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.cater-events { background: var(--cream); }
.cater-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 820px; margin: 0 auto; }
.cater-chips li {
	font-family: var(--script); font-weight: 600; font-size: 1.35rem; color: var(--green-deep);
	background: var(--paper); border: 1px solid var(--line); border-radius: 3px;
	padding: 10px 26px; box-shadow: var(--shadow-sm);
}
.cater-bring { background: var(--paper); }
.cater-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.cater-card { display: flex; gap: 20px; align-items: center; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.cater-card-img { flex: none; width: 140px; align-self: stretch; overflow: hidden; }
.cater-card-img img { width: 100%; height: 100%; object-fit: cover; }
.cater-card-body { padding: 22px 24px 22px 4px; }
.cater-card-body h3 { margin-bottom: 6px; }
.cater-card-body p { color: var(--muted); font-size: .94rem; }
.cater-menu { background: var(--paper); border-top: 1px solid var(--line); }
.cater-menu .menu-cat:last-child { margin-bottom: 0; }
.cater-how { background: var(--cream); }
.cater-steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.cater-step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); }
.cater-step-no { font-family: var(--script); font-weight: 600; font-size: 1.7rem; color: var(--green); display: block; margin-bottom: 12px; }
.cater-step h3 { margin-bottom: 8px; }
.cater-step p { color: var(--muted); font-size: .95rem; }
.cater-diet {
	max-width: 720px; margin: 44px auto 0; text-align: center; color: var(--muted);
	background: var(--green-pale); border: 1px solid rgba(86, 101, 74, .25);
	border-radius: var(--radius); padding: 20px 26px;
}
.cater-diet strong { color: var(--green-dark); }

/* Find Us page */
.visit { background: var(--paper); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: stretch; }
.visit-block { margin-bottom: 28px; }
.visit-block h3 {
	font-family: var(--sans); font-size: .76rem; font-weight: 700; text-transform: uppercase;
	letter-spacing: .16em; color: var(--green-deep); margin-bottom: 10px;
}
.hours { width: 100%; max-width: 360px; border-collapse: collapse; }
.hours td { padding: 9px 0; font-size: .95rem; border-bottom: 1px dashed var(--line); }
.hours td:last-child { text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; }
.hours tr.today td { color: var(--charcoal); font-weight: 600; }
.hours tr.today td:first-child::after {
	content: "· today"; font-family: var(--script); font-weight: 600;
	color: var(--green); margin-left: 8px; font-size: 1em;
}
.closed { color: var(--brass-deep); font-weight: 600; }
.visit-contact { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
	display: inline-flex; align-items: center; gap: 11px;
	font-weight: 500; width: fit-content;
	transition: color .25s var(--ease), transform .25s var(--ease);
}
.contact-link .ico { color: var(--green); }
.contact-link:hover { color: var(--green-deep); }
.visit-map {
	border-radius: var(--radius); overflow: hidden;
	box-shadow: var(--shadow); min-height: 440px;
	border: 1px solid var(--line);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; filter: saturate(.92); }

/* Enquiry forms */
.enquiry-section--alt { background: var(--cream-2); }
.enquiry { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 48px); box-shadow: var(--shadow-sm); }
.enquiry-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.enquiry-head p { color: var(--muted); margin-top: 8px; }
.enquiry-form { margin-top: 26px; }
.enquiry-field { margin-bottom: 16px; }
.enquiry-field label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--green-deep); margin-bottom: 6px; }
.enquiry-field input, .enquiry-field textarea {
	width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
	padding: 13px 15px; background: var(--cream);
	border: 1px solid var(--line); border-radius: var(--radius-sm);
	transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.enquiry-field input:focus, .enquiry-field textarea:focus {
	outline: none; border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(86, 101, 74, .16);
}
.enquiry-field textarea { resize: vertical; }
.enquiry-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enquiry-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.enquiry-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.enquiry-call { color: var(--green-deep); font-weight: 600; }
.enquiry-call:hover { text-decoration: underline; }
.enquiry-note { padding: 13px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 500; }
.enquiry-note--ok { background: var(--green-pale); color: var(--green-dark); border: 1px solid rgba(86, 101, 74, .35); }
.enquiry-note--err { background: rgba(169, 143, 82, .14); color: var(--brass-deep); border: 1px solid rgba(169, 143, 82, .35); }

/* Generic content */
.entry-content > * + * { margin-top: 1rem; }
.entry-content h2, .entry-content h3 { margin: 1.6rem 0 .5rem; }
.entry-content a { color: var(--green-deep); text-decoration: underline; }
.entry-content img { border-radius: var(--radius); }
.post-item { padding: 26px 0; border-bottom: 1px solid var(--line); }
.post-item h2 { font-size: 1.6rem; margin-bottom: 8px; }

/* Responsive */
@media (max-width: 1180px) {
	.reviews-grid, .reviews-grid:has(.fb-card) { grid-template-columns: 1fr 1fr; gap: 26px; }
	.review, .review:first-child { padding: 22px 0 0; }
	.review + .review { border-left: 0; border-top: 1px solid var(--line); }
	.review:first-child { padding-top: 0; }
	.review:nth-child(2) { border-top: 0; padding-top: 0; }
	.fb-card { margin-left: 0; }
	.show-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.footer-map { grid-column: 1 / -1; min-height: 240px; }
}

@media (max-width: 1080px) {
	.nav, .header-ctas { display: none; }
	.nav-toggle { display: flex; }
	.site-header { position: sticky; top: 0; }
	.header-inner { padding-top: 10px; padding-bottom: 10px; }
	.brand-mark { height: 64px; }
	.welcome-leaf { display: none; }
	.menu-jump { top: 85px; }
}

@media (max-width: 980px) {
	.welcome-grid, .story-grid, .visit-grid { grid-template-columns: 1fr; }
	.polaroid { justify-self: start; }
	.features-grid { grid-template-columns: 1fr 1fr; gap: 26px 0; }
	.feature + .feature { border-left: 0; }
	.feature:nth-child(even) { border-left: 1px solid var(--line); }
	.section-head.split { flex-direction: column; align-items: flex-start; gap: 18px; }
	.section-side { max-width: none; }
	.story-badge { right: 16px; bottom: -24px; }
	.gallery-grid { column-count: 2; }
	.topbar-left .topbar-item:first-child, .topbar-email { display: none; }

	.mobile-bar {
		display: grid; grid-template-columns: repeat(3, 1fr);
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 840;
		background: var(--green-dark);
		padding-bottom: env(safe-area-inset-bottom, 0);
		box-shadow: 0 -6px 24px -12px rgba(0, 0, 0, .5);
	}
	.mobile-bar-item {
		display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
		min-height: 56px; padding: 9px 6px;
		color: var(--cream); font-size: .7rem; font-weight: 600; letter-spacing: .04em;
	}
	.mobile-bar-item svg { width: 22px; height: 22px; }
	.mobile-bar-item + .mobile-bar-item { border-left: 1px solid rgba(255, 255, 255, .12); }
	.mobile-bar-item:active { background: rgba(255, 255, 255, .08); }
	body { padding-bottom: 58px; }
	body.menu-locked .mobile-bar { display: none; }
}

@media (max-width: 780px) {
	.cater-cards, .cater-steps { grid-template-columns: 1fr; }
	.reviews-grid, .reviews-grid:has(.fb-card) { grid-template-columns: 1fr; }
	.review:nth-child(2) { border-top: 1px solid var(--line); padding-top: 22px; }
	[data-reveal] { transition-delay: 0ms; }
}

@media (max-width: 600px) {
	.container { padding: 0 22px; }
	.hero { min-height: 78svh; }
	.hero-actions { width: 100%; }
	.hero-actions .btn { flex: 1; }
	.show-card { grid-template-columns: 1fr; }
	.show-card-img { aspect-ratio: 16 / 9; position: relative; }
	.features-grid { grid-template-columns: 1fr; gap: 0; padding-top: 10px; padding-bottom: 10px; }
	.feature { display: grid; grid-template-columns: 32px 1fr; column-gap: 16px; text-align: left; padding: 15px 0; }
	.feature-ico { grid-row: 1 / 3; padding-top: 2px; }
	.feature-ico svg { width: 30px; height: 30px; }
	.feature-title { grid-column: 2; margin: 1px 0 3px; }
	.feature-text { grid-column: 2; }
	.feature:nth-child(even) { border-left: 0; }
	.feature + .feature { border-top: 1px solid var(--line); }
	.menu-jump { top: 77px; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-bottom .container { flex-direction: column; }
	.enquiry-row { grid-template-columns: 1fr; }
	.dish { display: block; }
	.dish-price { margin-top: 6px; }
	.offer-bar-link { display: none; }
	.offer-bar-title { font-size: .94rem; }
	.gallery-grid { column-count: 1; }
	.brand-mark { height: 56px; }
	.polaroid { rotate: 1.6deg; }
	.story-stats { gap: 22px; flex-wrap: wrap; }
}

@media (min-width: 481px) and (max-width: 780px) {
	.gallery-grid { column-count: 2; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
	.preloader { display: none; }
	body.loading { overflow: auto; }
	[data-reveal] { opacity: 1; transform: none; }
	.hero-inner > *, body.loading .hero-inner > *, body.loaded .hero-inner > * { opacity: 1; animation: none; }
	.mobile-menu .mobile-menu-inner > a { opacity: 1; transform: none; }
	.svk-lightbox { transition: none; }
}
