/* --------------------------------------------------------------
   Lohrbacher Fässle Onepager
   -------------------------------------------------------------- */

:root {
	--lf-wine: #742f2b;
	--lf-wine-dark: #54211f;
	--lf-olive: #7d8f3b;
	--lf-olive-dark: #64732e;
	--lf-cream: #f6f1e7;
	--lf-cream-light: #fbf8f1;
	--lf-paper: #fffdf8;
	--lf-wood: #3a2118;
	--lf-brown: #4a3329;
	--lf-text: #49372f;
	--lf-muted: #77685f;
	--lf-line: rgba(86, 63, 49, 0.16);
	--lf-shadow: 0 20px 55px rgba(48, 28, 19, 0.16);
	--lf-script: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
	--lf-serif: Georgia, "Times New Roman", Times, serif;
	--lf-sans: "Trebuchet MS", Arial, sans-serif;
	--lf-header-height: 104px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--lf-header-height) + 18px);
}

body {
	margin: 0;
	background: var(--lf-cream-light);
	color: var(--lf-text);
	font-family: var(--lf-serif);
	font-size: 18px;
	line-height: 1.66;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

a {
	color: var(--lf-wine);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
	color: var(--lf-olive-dark);
}

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

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

h1,
h2,
h3,
h4,
p {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	font-family: var(--lf-serif);
	font-weight: 600;
	line-height: 1.16;
	color: var(--lf-wine);
}

h2 {
	font-size: clamp(2.05rem, 4vw, 3.1rem);
	letter-spacing: -0.025em;
	margin-bottom: 1rem;
}

h3 {
	font-size: 1.2rem;
}

::selection {
	background: rgba(125, 143, 59, 0.3);
	color: var(--lf-wine-dark);
}

.lf-container {
	width: min(100%, 1240px);
	margin-inline: auto;
	padding-inline: clamp(22px, 4vw, 54px);
}

.section {
	position: relative;
	padding-block: clamp(78px, 9vw, 126px);
}

.content-narrow {
	max-width: 890px;
}

.screen-reader-text {
	position: absolute !important;
	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,
.skip-link:focus {
	clip: auto !important;
	clip-path: none;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0.8rem 1rem;
	left: 12px;
	top: 12px;
	z-index: 99999;
	background: #fff;
	color: #111;
	box-shadow: 0 3px 18px rgba(0, 0, 0, 0.25);
}

/* Header ------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	min-height: var(--lf-header-height);
	background: rgba(248, 244, 236, 0.96);
	border-bottom: 1px solid rgba(94, 71, 57, 0.08);
	backdrop-filter: blur(14px);
	transition: box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
	box-shadow: 0 8px 28px rgba(58, 33, 24, 0.11);
}

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

.header-inner {
	min-height: var(--lf-header-height);
	display: grid;
	grid-template-columns: minmax(190px, 280px) 1fr auto;
	align-items: center;
	gap: clamp(18px, 3vw, 42px);
}

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

.site-branding a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-branding img,
.custom-logo {
	width: auto;
	max-width: min(100%, 250px);
	max-height: 82px;
	object-fit: contain;
}

.custom-logo-link {
	display: inline-flex;
}

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

.primary-navigation .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(20px, 2.4vw, 39px);
}

.primary-navigation a {
	position: relative;
	display: inline-block;
	padding: 10px 0;
	color: #38251d;
	font-size: 0.98rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.primary-navigation a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 3px;
	height: 2px;
	background: var(--lf-olive);
	transition: right 180ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after,
.primary-navigation a.is-active::after {
	right: 0;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.primary-navigation a.is-active {
	color: var(--lf-olive-dark);
}

.header-reserve {
	display: none;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.65rem 1rem;
	border-radius: 3px;
	background: var(--lf-olive);
	color: #fff;
	font-family: var(--lf-sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
}

.header-reserve:hover,
.header-reserve:focus-visible {
	background: var(--lf-olive-dark);
	color: #fff;
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	justify-self: end;
	border: 0;
	background: transparent;
	color: var(--lf-wine);
	padding: 10px;
	cursor: pointer;
}

.menu-toggle-label {
	font-family: var(--lf-sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.menu-toggle-icon {
	width: 26px;
	height: 20px;
	position: relative;
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
}

.menu-toggle-icon span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* Shared typography and buttons -------------------------------- */
.script-heading {
	margin-bottom: 0.35rem;
	color: var(--lf-olive);
	font-family: var(--lf-script);
	font-size: clamp(1.55rem, 3vw, 2.25rem);
	font-weight: 400;
	line-height: 1.15;
	transform: rotate(-1.5deg);
	transform-origin: left center;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 3.2rem;
}

.section-heading.centered {
	text-align: center;
	margin-inline: auto;
}

.section-heading.centered .script-heading {
	transform-origin: center;
}

.section-heading > p:last-child {
	margin-bottom: 0;
	color: var(--lf-muted);
}

.button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	min-height: 50px;
	padding: 0.82rem 1.28rem;
	border: 1px solid transparent;
	border-radius: 3px;
	font-family: var(--lf-sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.055em;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: 0 8px 22px rgba(45, 34, 22, 0.12);
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(45, 34, 22, 0.2);
}

.button-primary {
	background: var(--lf-olive);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.12);
}

.button-primary:hover,
.button-primary:focus-visible {
	background: var(--lf-olive-dark);
	color: #fff;
}

.button-secondary {
	background: var(--lf-olive);
	color: #fff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
	background: var(--lf-wine);
	color: #fff;
}

.button-icon {
	font-size: 0.95rem;
	opacity: 0.9;
}

/* Hero --------------------------------------------------------- */
.hero {
	position: relative;
	min-height: clamp(610px, 74vh, 790px);
	display: grid;
	align-items: center;
	isolation: isolate;
	background-color: #27140f;
	background-image: var(--lf-hero-image);
	background-size: cover;
	background-position: center center;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(23, 10, 6, 0.72) 0%, rgba(23, 10, 6, 0.44) 39%, rgba(23, 10, 6, 0.06) 66%, rgba(23, 10, 6, 0.12) 100%),
		linear-gradient(0deg, rgba(18, 8, 4, 0.17), transparent 38%);
}

.hero-shade {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(circle at 26% 46%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42) 92%);
	pointer-events: none;
}

.hero-inner {
	width: 100%;
	padding-top: 40px;
	padding-bottom: 74px;
}

.hero-copy {
	max-width: 730px;
	color: #fff;
	text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.hero-script {
	color: #fff;
	font-size: clamp(1.9rem, 4vw, 3rem);
	margin-bottom: 0.35rem;
}

.hero h1 {
	max-width: 760px;
	margin-bottom: 0.55rem;
	color: #fff;
	font-family: var(--lf-script);
	font-size: clamp(4.3rem, 9vw, 8.2rem);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 0.93;
	transform: rotate(-2.2deg);
	transform-origin: left center;
}

.hero-kicker {
	margin: 1.4rem 0 0.35rem;
	font-size: clamp(1.1rem, 2.2vw, 1.45rem);
	font-weight: 700;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.hero-tagline {
	margin-bottom: 1.65rem;
	color: #c3cd8d;
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	font-weight: 600;
}

.rough-edge {
	position: absolute;
	left: -1%;
	right: -1%;
	bottom: -1px;
	height: 26px;
	z-index: 3;
	background: var(--lf-cream-light);
	clip-path: polygon(0 48%, 3% 42%, 7% 51%, 11% 39%, 15% 50%, 21% 45%, 25% 57%, 30% 43%, 34% 50%, 40% 38%, 45% 54%, 50% 42%, 55% 53%, 61% 43%, 66% 50%, 72% 39%, 77% 55%, 83% 43%, 88% 51%, 94% 40%, 100% 48%, 100% 100%, 0 100%);
}

.rough-edge.top {
	top: -1px;
	bottom: auto;
	transform: rotate(180deg);
}

.rough-edge-dark {
	background: var(--lf-cream-light);
}

/* About -------------------------------------------------------- */
.about-section {
	background:
		radial-gradient(circle at 11% 20%, rgba(221, 210, 184, 0.22), transparent 27%),
		linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(246, 241, 231, 0.86)),
		var(--lf-cream-light);
	overflow: hidden;
}

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.25fr);
	gap: clamp(48px, 8vw, 105px);
	align-items: center;
}

.about-copy {
	position: relative;
	z-index: 2;
}

.about-copy h2 {
	font-size: clamp(2.25rem, 4.4vw, 3.4rem);
}

.about-copy p:not(.script-heading) {
	max-width: 590px;
}

.about-copy .button {
	margin-top: 0.6rem;
}

.family-photo {
	position: relative;
	margin: 0;
	padding: 10px;
	background: #fff;
	box-shadow: var(--lf-shadow);
	transform: rotate(1.3deg);
	isolation: isolate;
}

.family-photo::before,
.family-photo::after {
	content: "";
	position: absolute;
	inset: 5px;
	z-index: -1;
	background: #e5ddcf;
	transform: rotate(-2.2deg);
}

.family-photo::after {
	transform: rotate(2.8deg);
	background: #f1eadf;
}

.family-photo img {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 1.48 / 1;
	object-fit: cover;
}

.vine-decoration {
	position: absolute;
	z-index: 0;
	width: clamp(140px, 19vw, 250px);
	pointer-events: none;
	user-select: none;
}

.vine-right {
	right: -42px;
	bottom: -82px;
}

.vine-left {
	left: -58px;
	bottom: -82px;
	transform: scaleX(-1) rotate(-8deg);
}

/* Values ------------------------------------------------------- */
.values-section {
	position: relative;
	background: rgba(255, 253, 248, 0.94);
	border-top: 1px solid var(--lf-line);
	border-bottom: 1px solid var(--lf-line);
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding-inline: 0;
}

.value-card {
	min-height: 315px;
	padding: 36px clamp(24px, 3vw, 44px) 34px;
	text-align: center;
	border-left: 1px solid var(--lf-line);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.value-card:last-child {
	border-right: 1px solid var(--lf-line);
}

.value-card img {
	width: 92px;
	height: 78px;
	object-fit: contain;
	margin-bottom: 0.7rem;
}

.value-card h3 {
	margin-bottom: 0.65rem;
	font-size: 1.05rem;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.value-card p {
	margin-bottom: 0;
	font-size: 0.96rem;
	line-height: 1.55;
}

/* Food --------------------------------------------------------- */
.food-section {
	background:
		radial-gradient(circle at 76% 18%, rgba(125, 143, 59, 0.08), transparent 26%),
		repeating-linear-gradient(0deg, transparent 0, transparent 23px, rgba(98, 71, 50, 0.025) 24px),
		var(--lf-cream);
}

.food-layout {
	display: grid;
	grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.35fr);
	gap: clamp(34px, 6vw, 76px);
	align-items: stretch;
}

.food-photo {
	position: relative;
	min-height: 600px;
	margin: 0;
	border: 10px solid rgba(255, 255, 255, 0.72);
	box-shadow: var(--lf-shadow);
	overflow: hidden;
	transform: rotate(-1.2deg);
}

.food-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 42%, rgba(31, 16, 10, 0.88) 100%);
}

.food-photo img {
	width: 100%;
	height: 100%;
	min-height: 600px;
	object-fit: cover;
}

.food-photo figcaption {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 25px;
	z-index: 2;
	display: grid;
	gap: 0.3rem;
	color: #fff;
}

.food-photo figcaption .script-heading {
	color: #c5cf94;
	font-size: 2rem;
	margin: 0;
}

.food-photo figcaption strong {
	font-size: 1.45rem;
}

.food-photo figcaption span:last-child {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.82);
}

.menu-card {
	align-self: center;
	padding: clamp(28px, 4vw, 52px);
	background: rgba(255, 253, 248, 0.93);
	border: 1px solid rgba(94, 68, 51, 0.15);
	box-shadow: 0 18px 45px rgba(70, 46, 32, 0.1);
}

.menu-list {
	margin-bottom: 1.8rem;
}

.menu-item-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 1.2rem;
	align-items: baseline;
	padding-block: 1.05rem;
	border-bottom: 1px dotted rgba(86, 63, 49, 0.27);
}

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

.menu-item-copy h3 {
	margin-bottom: 0.25rem;
	font-size: 1.08rem;
}

.menu-item-copy p {
	margin: 0;
	color: var(--lf-muted);
	font-size: 0.92rem;
	line-height: 1.45;
}

.menu-price {
	color: var(--lf-wine);
	font-weight: 700;
	white-space: nowrap;
}

/* Event strip -------------------------------------------------- */
.event-section {
	position: relative;
	padding-block: clamp(70px, 8vw, 104px);
	overflow: hidden;
	background-color: var(--lf-wood);
	background-image:
		linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.10)),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 7px),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 130px);
	color: #fff;
}

.event-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 35% 35%, rgba(142, 91, 52, 0.28), transparent 35%), radial-gradient(circle at 82% 60%, rgba(0, 0, 0, 0.2), transparent 38%);
	pointer-events: none;
}

.event-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 120px minmax(0, 1.1fr) minmax(300px, 0.9fr);
	gap: clamp(28px, 5vw, 70px);
	align-items: center;
}

.event-icon img {
	width: 112px;
	filter: drop-shadow(0 8px 13px rgba(0, 0, 0, 0.28));
}

.event-overline {
	margin-bottom: 0.65rem;
	color: #aeb96f;
	font-family: var(--lf-sans);
	font-size: 0.83rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.event-main h2 {
	margin-bottom: 0.15rem;
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.4rem);
}

.event-time {
	margin-bottom: 1.15rem;
	font-size: 1.2rem;
}

.event-contact {
	padding-left: clamp(20px, 4vw, 48px);
	border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.event-contact-line {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin-bottom: 0.8rem;
	color: #fff;
	font-size: clamp(1rem, 2vw, 1.2rem);
	text-decoration: none;
}

.event-contact-line:hover,
.event-contact-line:focus-visible {
	color: #c8d19c;
}

.event-contact-line img {
	width: 26px;
	height: 26px;
	filter: invert(73%) sepia(25%) saturate(594%) hue-rotate(29deg) brightness(91%);
}

.event-welcome {
	margin: 1.15rem 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.96rem;
}

.event-heart {
	position: absolute;
	right: 7vw;
	bottom: 18px;
	color: rgba(255, 255, 255, 0.26);
	font-family: var(--lf-script);
	font-size: 6rem;
	line-height: 1;
	transform: rotate(-18deg);
}

/* Contact ------------------------------------------------------ */
.contact-section {
	background: var(--lf-cream-light);
	overflow: hidden;
}

.contact-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(28px, 5vw, 58px);
	align-items: stretch;
}

.contact-card {
	position: relative;
	padding: clamp(32px, 5vw, 58px);
	background: var(--lf-paper);
	border: 1px solid rgba(83, 60, 47, 0.14);
	box-shadow: 0 18px 45px rgba(75, 52, 38, 0.1);
}

.contact-card h3 {
	font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.contact-card-icon {
	width: 64px;
	height: 64px;
	display: grid;
	place-items: center;
	margin-bottom: 1rem;
	border-radius: 50%;
	background: rgba(125, 143, 59, 0.12);
	color: var(--lf-olive);
}

.contact-card-icon img {
	width: 36px;
	filter: invert(52%) sepia(18%) saturate(1120%) hue-rotate(29deg) brightness(92%);
}

.location-card p {
	margin-bottom: 1.35rem;
}

.reservation-card {
	background:
		linear-gradient(135deg, rgba(111, 45, 41, 0.97), rgba(76, 28, 27, 0.98)),
		var(--lf-wine);
	color: #fff;
}

.reservation-card::after {
	content: "♡";
	position: absolute;
	right: 24px;
	bottom: 12px;
	font-family: var(--lf-script);
	font-size: 6rem;
	color: rgba(255, 255, 255, 0.08);
	transform: rotate(-12deg);
}

.reservation-card .script-heading {
	color: #bcc888;
}

.reservation-card h3 {
	color: #fff;
}

.large-contact-link {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.9rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	color: #fff;
	font-size: clamp(1rem, 2.2vw, 1.35rem);
	text-decoration: none;
}

.large-contact-link:hover,
.large-contact-link:focus-visible {
	color: #d2d9ae;
}

.large-contact-link img {
	width: 30px;
	filter: brightness(0) invert(1);
}

.contact-note {
	position: relative;
	z-index: 1;
	margin: 1.25rem 0 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.94rem;
}

/* Footer ------------------------------------------------------- */
.site-footer {
	background: var(--lf-cream);
	border-top: 1px solid var(--lf-line);
}

.footer-main {
	position: relative;
	padding-block: 52px 46px;
	background:
		radial-gradient(circle at 0 90%, rgba(125, 143, 59, 0.08), transparent 22%),
		var(--lf-cream);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.1fr 1.15fr 1.25fr 0.8fr;
	gap: 0;
}

.footer-column {
	min-width: 0;
	padding-inline: clamp(24px, 3vw, 38px);
	border-left: 1px solid var(--lf-line);
}

.footer-column:first-child {
	padding-left: 0;
	border-left: 0;
}

.footer-column:last-child {
	padding-right: 0;
}

.footer-column h2 {
	margin-bottom: 0.85rem;
	font-size: 0.9rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.footer-column p,
.footer-column a {
	font-size: 0.88rem;
	line-height: 1.55;
}

.footer-column p {
	margin-bottom: 0.6rem;
}

.footer-route {
	display: inline-flex;
	gap: 0.4rem;
	align-items: center;
	color: var(--lf-olive-dark);
	font-weight: 700;
}

.social-links {
	display: flex;
	gap: 10px;
	margin-bottom: 1rem;
}

.social-links a,
.social-placeholder {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--lf-olive);
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	text-decoration: none;
}

.social-links a:hover,
.social-links a:focus-visible {
	background: var(--lf-wine);
}

.social-links img {
	width: 21px;
	height: 21px;
	filter: brightness(0) invert(1);
}

.footer-direct-contact a {
	color: var(--lf-text);
	word-break: break-word;
}

.footer-bottom {
	padding-block: 14px;
	background: linear-gradient(90deg, var(--lf-olive-dark), var(--lf-olive));
	color: rgba(255, 255, 255, 0.88);
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.footer-bottom nav {
	display: flex;
	gap: 22px;
}

.footer-bottom a,
.footer-bottom p {
	margin: 0;
	color: inherit;
	font-family: var(--lf-sans);
	font-size: 0.72rem;
	text-decoration: none;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
	color: #fff;
	text-decoration: underline;
}

/* Standard content templates ---------------------------------- */
.content-section {
	min-height: 60vh;
	background: var(--lf-cream-light);
}

.entry-card {
	padding: clamp(30px, 6vw, 70px);
	background: #fff;
	border: 1px solid var(--lf-line);
	box-shadow: var(--lf-shadow);
}

.entry-card + .entry-card {
	margin-top: 2rem;
}

.entry-header h1 {
	font-size: clamp(2.3rem, 5vw, 4rem);
}

.entry-header a {
	text-decoration: none;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content img {
	margin-block: 1.4rem;
}

.event-single-date {
	margin-bottom: 0.15rem;
	color: var(--lf-wine);
	font-size: 1.5rem;
	font-weight: 700;
}

.event-single-time {
	font-size: 1.15rem;
}

.event-single-note {
	display: inline-block;
	padding: 0.5rem 0.8rem;
	background: rgba(125, 143, 59, 0.12);
	color: var(--lf-olive-dark);
	font-weight: 700;
}

.error-404 {
	text-align: center;
}

/* Reveal animation -------------------------------------------- */
[data-reveal] {
	opacity: 1;
	transform: none;
}

.has-js [data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 650ms ease, transform 650ms ease;
}

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

/* Focus -------------------------------------------------------- */
:focus-visible {
	outline: 3px solid rgba(125, 143, 59, 0.78);
	outline-offset: 4px;
}

/* Responsive --------------------------------------------------- */
@media (max-width: 1160px) {
	:root {
		--lf-header-height: 92px;
	}

	.header-inner {
		grid-template-columns: minmax(175px, 230px) 1fr;
	}

	.header-reserve {
		display: none;
	}

	.primary-navigation .menu {
		gap: 20px;
	}

	.primary-navigation a {
		font-size: 0.9rem;
	}

	.site-branding img,
	.custom-logo {
		max-height: 72px;
	}
}

@media (max-width: 980px) {
	:root {
		--lf-header-height: 84px;
	}

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

	.header-inner {
		grid-template-columns: 1fr auto;
	}

	.site-branding img,
	.custom-logo {
		max-width: 220px;
		max-height: 66px;
	}

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

	.primary-navigation {
		position: fixed;
		inset: var(--lf-header-height) 0 auto 0;
		max-height: calc(100vh - var(--lf-header-height));
		overflow-y: auto;
		background: rgba(250, 247, 240, 0.99);
		border-top: 1px solid var(--lf-line);
		box-shadow: 0 16px 30px rgba(52, 31, 22, 0.18);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-12px);
		transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	}

	.admin-bar .primary-navigation {
		inset-block-start: calc(var(--lf-header-height) + 32px);
	}

	.primary-navigation.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.primary-navigation .menu {
		width: min(100%, 760px);
		margin-inline: auto;
		padding: 22px 28px 30px;
		display: grid;
		gap: 0;
	}

	.primary-navigation a {
		display: block;
		padding: 14px 4px;
		border-bottom: 1px solid var(--lf-line);
		font-size: 1rem;
	}

	.primary-navigation a::after {
		display: none;
	}

	.hero {
		min-height: 650px;
		background-position: 62% center;
	}

	.hero::before {
		background: linear-gradient(90deg, rgba(23, 10, 6, 0.8) 0%, rgba(23, 10, 6, 0.56) 53%, rgba(23, 10, 6, 0.18) 100%);
	}

	.hero-copy {
		max-width: 610px;
	}

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

	.about-copy {
		max-width: 700px;
	}

	.family-photo {
		width: min(100%, 790px);
	}

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

	.value-card:nth-child(3) {
		border-top: 1px solid var(--lf-line);
	}

	.value-card:nth-child(4) {
		border-top: 1px solid var(--lf-line);
		border-right: 1px solid var(--lf-line);
	}

	.food-layout {
		grid-template-columns: 0.8fr 1.2fr;
		gap: 32px;
	}

	.food-photo,
	.food-photo img {
		min-height: 520px;
	}

	.event-grid {
		grid-template-columns: 100px 1fr;
	}

	.event-contact {
		grid-column: 2;
		padding: 26px 0 0;
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.16);
	}

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

	.footer-column:nth-child(3) {
		padding-left: 0;
		border-left: 0;
	}
}

@media (max-width: 760px) {
	body {
		font-size: 17px;
	}

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

	.admin-bar .primary-navigation {
		inset-block-start: calc(var(--lf-header-height) + 46px);
	}

	.section {
		padding-block: 76px;
	}

	.hero {
		min-height: 640px;
		background-position: 72% center;
	}

	.hero::before {
		background: linear-gradient(90deg, rgba(24, 10, 6, 0.88) 0%, rgba(24, 10, 6, 0.68) 66%, rgba(24, 10, 6, 0.34) 100%);
	}

	.hero h1 {
		font-size: clamp(4rem, 16vw, 6.2rem);
	}

	.hero-kicker {
		max-width: 420px;
	}

	.about-grid {
		gap: 46px;
	}

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

	.value-card,
	.value-card:nth-child(3),
	.value-card:nth-child(4),
	.value-card:last-child {
		min-height: auto;
		padding-block: 34px;
		border: 0;
		border-bottom: 1px solid var(--lf-line);
	}

	.value-card:first-child {
		border-top: 1px solid var(--lf-line);
	}

	.food-layout {
		grid-template-columns: 1fr;
	}

	.food-photo,
	.food-photo img {
		min-height: 460px;
	}

	.menu-card {
		padding: 28px 24px;
	}

	.event-grid {
		grid-template-columns: 78px 1fr;
		gap: 24px;
	}

	.event-icon img {
		width: 76px;
	}

	.event-contact {
		grid-column: 1 / -1;
	}

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

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

	.footer-column,
	.footer-column:first-child,
	.footer-column:nth-child(3),
	.footer-column:last-child {
		padding: 24px 0;
		border-left: 0;
		border-bottom: 1px solid var(--lf-line);
	}

	.footer-column:last-child {
		border-bottom: 0;
	}

	.footer-bottom-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}

@media (max-width: 520px) {
	:root {
		--lf-header-height: 76px;
	}

	.lf-container {
		padding-inline: 20px;
	}

	.site-branding img,
	.custom-logo {
		max-width: 176px;
		max-height: 58px;
	}

	.menu-toggle-label {
		display: none;
	}

	.hero {
		min-height: 620px;
		background-position: 74% center;
	}

	.hero-inner {
		padding-top: 20px;
	}

	.hero-script {
		font-size: 1.7rem;
	}

	.hero h1 {
		font-size: clamp(3.55rem, 18vw, 5rem);
	}

	.hero-kicker {
		font-size: 1rem;
	}

	.button {
		width: 100%;
	}

	.family-photo {
		padding: 6px;
	}

	.food-photo,
	.food-photo img {
		min-height: 390px;
	}

	.food-photo figcaption {
		left: 20px;
		right: 20px;
		bottom: 18px;
	}

	.menu-item-row {
		grid-template-columns: 1fr;
		gap: 0.35rem;
	}

	.menu-price {
		justify-self: start;
	}

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

	.event-icon {
		display: none;
	}

	.event-main h2 {
		font-size: 2.25rem;
	}

	.event-contact-line {
		font-size: 0.94rem;
		word-break: break-word;
	}

	.contact-card {
		padding: 30px 24px;
	}

	.large-contact-link {
		font-size: 1rem;
		word-break: break-word;
	}

	.footer-bottom nav {
		gap: 14px;
	}
}

@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;
	}

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