/* ==========================================================================
   Foodland — main stylesheet
   1. Tokens
   2. Reset & base
   3. Layout helpers
   4. Buttons, tags, forms
   5. Header & nav
   6. Hero
   7. Sections (highlights, about, menu, events, gallery, reviews, contact)
   8. Archive & single pages
   9. Blog, comments, sidebar
   10. Footer & floating actions
   11. Utilities & responsive
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */

:root {
	--fl-primary: #8c1d18;
	--fl-primary-rgb: 140, 29, 24;
	--fl-primary-dark: #6b120e;
	--fl-accent: #e0a11b;
	--fl-accent-rgb: 224, 161, 27;
	--fl-cream: #fdf6ec;
	--fl-cream-deep: #f7ead6;
	--fl-ink: #241a15;
	--fl-ink-soft: #5c4c43;
	--fl-line: rgba(36, 26, 21, 0.12);
	--fl-white: #fff;

	--fl-serif: "Playfair Display", Georgia, "Times New Roman", serif;
	--fl-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--fl-bengali: "Baloo Da 2", "Noto Sans Bengali", var(--fl-sans);

	--fl-wrap: 1180px;
	--fl-gap: clamp(1rem, 3vw, 2rem);
	--fl-sec-y: clamp(3.5rem, 8vw, 6.5rem);

	--fl-radius: 14px;
	--fl-radius-lg: 22px;
	--fl-shadow: 0 2px 8px rgba(36, 26, 21, 0.06), 0 12px 32px rgba(36, 26, 21, 0.07);
	--fl-shadow-lg: 0 8px 24px rgba(36, 26, 21, 0.1), 0 24px 60px rgba(36, 26, 21, 0.12);
	--fl-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 2. Reset & base --------------------------------------------------------- */

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--fl-cream);
	color: var(--fl-ink);
	font-family: var(--fl-sans);
	font-size: 1rem;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img,
picture,
video,
iframe {
	max-width: 100%;
	height: auto;
	display: block;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--fl-serif);
	font-weight: 700;
	line-height: 1.18;
	margin: 0 0 0.6em;
	color: var(--fl-ink);
	letter-spacing: -0.015em;
}

p {
	margin: 0 0 1.1em;
}

a {
	color: var(--fl-primary);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color 0.2s var(--fl-ease);
}

a:hover {
	color: var(--fl-primary-dark);
}

:focus-visible {
	outline: 3px solid var(--fl-accent);
	outline-offset: 2px;
	border-radius: 4px;
}

ul, ol {
	padding-left: 1.2em;
}

blockquote {
	margin: 0;
}

hr {
	border: 0;
	border-top: 1px solid var(--fl-line);
	margin: 2.5rem 0;
}

[lang="bn"] {
	font-family: var(--fl-bengali);
	line-height: 1.55;
}

.fl-icon {
	flex: 0 0 auto;
	vertical-align: middle;
}

/* 3. Layout helpers ------------------------------------------------------- */

.fl-wrap {
	width: 100%;
	max-width: var(--fl-wrap);
	margin: 0 auto;
	padding-inline: clamp(1rem, 5vw, 2.5rem);
}

.fl-section {
	position: relative;
	padding-block: var(--fl-sec-y);
}

.fl-section--tight {
	padding-block: clamp(2rem, 5vw, 3.5rem);
}

.fl-section--cream {
	background: var(--fl-cream-deep);
}

.fl-sec-head {
	max-width: 660px;
	margin: 0 auto clamp(2rem, 5vw, 3.25rem);
}

.fl-sec-head--center {
	text-align: center;
}

.fl-sec-head--left {
	margin-left: 0;
	text-align: left;
}

.fl-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	margin: 0 0 0.6rem;
	font-family: var(--fl-sans);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--fl-primary);
}

.fl-eyebrow a {
	text-decoration: none;
}

.fl-sec-title {
	font-size: clamp(1.9rem, 4.5vw, 3rem);
	margin-bottom: 0.5rem;
}

.fl-sec-title--sm {
	font-size: clamp(1.5rem, 3.2vw, 2.1rem);
	margin-bottom: 1.75rem;
}

.fl-sec-text {
	margin: 0.75rem 0 0;
	color: var(--fl-ink-soft);
	font-size: 1.05rem;
}

/* Alpona-inspired divider */
.fl-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin: 0 auto 0.25rem;
	width: 120px;
}

.fl-divider--left {
	margin-left: 0;
	justify-content: flex-start;
}

.fl-divider i {
	display: block;
	height: 1px;
	flex: 1;
	background: linear-gradient(90deg, transparent, var(--fl-accent));
}

.fl-divider i:last-child {
	background: linear-gradient(90deg, var(--fl-accent), transparent);
}

.fl-divider b {
	width: 9px;
	height: 9px;
	flex: 0 0 auto;
	background: var(--fl-accent);
	transform: rotate(45deg);
	border-radius: 2px;
}

.fl-section__more {
	margin: clamp(2rem, 4vw, 3rem) 0 0;
	text-align: center;
}

.fl-prose {
	max-width: 780px;
	font-size: 1.03rem;
}

.fl-prose--narrow {
	max-width: 700px;
	margin-inline: auto;
}

.fl-prose h2 { font-size: 1.7rem; margin-top: 2em; }
.fl-prose h3 { font-size: 1.35rem; margin-top: 1.8em; }
.fl-prose ul,
.fl-prose ol { margin-bottom: 1.2em; }
.fl-prose li { margin-bottom: 0.4em; }

.fl-prose blockquote {
	border-left: 3px solid var(--fl-accent);
	padding: 0.3rem 0 0.3rem 1.4rem;
	font-family: var(--fl-serif);
	font-size: 1.2rem;
	font-style: italic;
	color: var(--fl-ink-soft);
	margin: 1.8em 0;
}

.fl-prose img {
	border-radius: var(--fl-radius);
}

.fl-layout {
	display: grid;
	gap: clamp(2rem, 5vw, 3.5rem);
}

.fl-layout.has-sidebar {
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 62rem) {
	.fl-layout.has-sidebar {
		grid-template-columns: minmax(0, 1fr) 300px;
	}
}

.fl-empty {
	padding: 2.5rem 1.5rem;
	text-align: center;
	color: var(--fl-ink-soft);
	background: rgba(var(--fl-primary-rgb), 0.04);
	border: 1px dashed rgba(var(--fl-primary-rgb), 0.25);
	border-radius: var(--fl-radius);
}

/* Placeholder art when there is no photo */
.fl-img--placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 4 / 3;
	background:
		radial-gradient(circle at 30% 25%, rgba(var(--fl-accent-rgb), 0.28), transparent 55%),
		linear-gradient(135deg, var(--fl-cream-deep), #eddcc4);
	color: rgba(var(--fl-primary-rgb), 0.35);
}

/* 4. Buttons, tags, forms ------------------------------------------------- */

.fl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 0.85em 1.6em;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--fl-sans);
	font-size: 0.94rem;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.18s var(--fl-ease), background-color 0.2s var(--fl-ease),
		color 0.2s var(--fl-ease), box-shadow 0.2s var(--fl-ease), border-color 0.2s var(--fl-ease);
}

.fl-btn:hover {
	transform: translateY(-2px);
}

.fl-btn:active {
	transform: translateY(0);
}

.fl-btn--sm { padding: 0.6em 1.15em; font-size: 0.86rem; }
.fl-btn--lg { padding: 1em 2em; font-size: 1.02rem; }

.fl-btn--primary {
	background: var(--fl-primary);
	color: var(--fl-white);
	box-shadow: 0 6px 18px rgba(var(--fl-primary-rgb), 0.28);
}

.fl-btn--primary:hover {
	background: var(--fl-primary-dark);
	color: var(--fl-white);
	box-shadow: 0 10px 26px rgba(var(--fl-primary-rgb), 0.36);
}

.fl-btn--accent {
	background: var(--fl-accent);
	color: #3a2708;
	box-shadow: 0 6px 18px rgba(var(--fl-accent-rgb), 0.32);
}

.fl-btn--accent:hover {
	background: #cf9013;
	color: #3a2708;
}

.fl-btn--outline {
	border-color: rgba(var(--fl-primary-rgb), 0.35);
	color: var(--fl-primary);
	background: transparent;
}

.fl-btn--outline:hover {
	background: var(--fl-primary);
	border-color: var(--fl-primary);
	color: var(--fl-white);
}

.fl-btn--ghost {
	background: rgba(var(--fl-primary-rgb), 0.08);
	color: var(--fl-primary);
}

.fl-btn--ghost:hover {
	background: rgba(var(--fl-primary-rgb), 0.16);
	color: var(--fl-primary-dark);
}

.fl-btn--light {
	background: rgba(255, 255, 255, 0.92);
	color: var(--fl-primary);
}

.fl-btn--light:hover {
	background: #fff;
}

.fl-btn.is-disabled {
	background: rgba(36, 26, 21, 0.12);
	color: var(--fl-ink-soft);
	cursor: not-allowed;
	pointer-events: none;
	box-shadow: none;
}

.fl-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.25em;
	padding: 0.28em 0.7em;
	border-radius: 999px;
	background: rgba(var(--fl-primary-rgb), 0.09);
	color: var(--fl-primary);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	list-style: none;
}

.fl-tag--popular {
	position: absolute;
	top: 0.6rem;
	left: 0.6rem;
	background: var(--fl-accent);
	color: #3a2708;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.fl-tag--veg { background: rgba(46, 125, 50, 0.12); color: #2e7d32; }
.fl-tag--non-veg { background: rgba(183, 28, 28, 0.12); color: #b71c1c; }
.fl-tag--egg { background: rgba(230, 145, 20, 0.14); color: #a16207; }
.fl-tag--chef-special { background: rgba(var(--fl-accent-rgb), 0.2); color: #8a5c05; }

.fl-tag--spice {
	background: rgba(198, 40, 40, 0.1);
	color: #c62828;
	padding-inline: 0.5em;
}

.fl-tag--soldout,
.fl-tag--past {
	align-self: flex-start;
	background: rgba(255, 255, 255, 0.9);
	color: var(--fl-primary);
	margin-bottom: 0.75rem;
}

/* Stars */
.fl-stars {
	display: inline-flex;
	gap: 2px;
	color: rgba(36, 26, 21, 0.2);
}

.fl-star.is-on,
.fl-star.is-half {
	color: var(--fl-accent);
}

.fl-star.is-half { opacity: 0.6; }

.fl-stars-value {
	margin-left: 0.4em;
	font-weight: 700;
}

/* Forms */
.fl-form-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.fl-field {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.fl-field--full {
	grid-column: 1 / -1;
}

.fl-field label,
.fl-form label {
	font-size: 0.83rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--fl-ink-soft);
}

.fl-field .req {
	color: var(--fl-primary);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="search"],
input[type="password"],
select,
textarea {
	width: 100%;
	padding: 0.72em 0.9em;
	border: 1px solid var(--fl-line);
	border-radius: 10px;
	background: var(--fl-white);
	color: var(--fl-ink);
	font-family: inherit;
	font-size: 0.95rem;
	transition: border-color 0.2s var(--fl-ease), box-shadow 0.2s var(--fl-ease);
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--fl-primary);
	box-shadow: 0 0 0 3px rgba(var(--fl-primary-rgb), 0.12);
	outline: none;
}

textarea {
	resize: vertical;
	min-height: 110px;
}

.fl-form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.fl-form-fine {
	margin: 0.75rem 0 0;
	font-size: 0.8rem;
	color: var(--fl-ink-soft);
}

.fl-hp {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.fl-notice {
	padding: 0.9rem 1.1rem;
	margin-bottom: 1.25rem;
	border-radius: 10px;
	border-left: 4px solid;
	font-size: 0.93rem;
}

.fl-notice--success {
	background: rgba(46, 125, 50, 0.1);
	border-color: #2e7d32;
	color: #1b5e20;
}

.fl-notice--error {
	background: rgba(183, 28, 28, 0.09);
	border-color: #b71c1c;
	color: #8e1414;
}

/* Search form */
.fl-search {
	display: flex;
	gap: 0.5rem;
	max-width: 440px;
	margin: 0 auto 1.5rem;
}

.fl-search__input {
	flex: 1;
}

.fl-search__btn {
	display: grid;
	place-items: center;
	width: 46px;
	flex: 0 0 46px;
	border: 0;
	border-radius: 10px;
	background: var(--fl-primary);
	color: var(--fl-white);
	cursor: pointer;
	transition: background-color 0.2s var(--fl-ease);
}

.fl-search__btn:hover {
	background: var(--fl-primary-dark);
}

/* 5. Header & nav --------------------------------------------------------- */

.fl-topbar {
	background: var(--fl-ink);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.82rem;
}

.fl-topbar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 1.5rem;
	min-height: 40px;
	padding-block: 0.4rem;
}

.fl-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	margin: 0;
}

.fl-topbar__item a {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	color: inherit;
	text-decoration: none;
}

.fl-topbar__item a:hover {
	color: var(--fl-accent);
}

.fl-topbar__item--phone {
	margin-left: auto;
	font-weight: 600;
}

.fl-status__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #9e9e9e;
}

.fl-status.is-open .fl-status__dot {
	background: #4caf50;
	box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.25);
}

.fl-status.is-closed .fl-status__dot {
	background: #e57373;
}

.fl-status__hours {
	opacity: 0.65;
	margin-left: 0.35em;
}

.fl-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgba(253, 246, 236, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	transition: box-shadow 0.25s var(--fl-ease), border-color 0.25s var(--fl-ease),
		background-color 0.25s var(--fl-ease);
}

.fl-header.is-stuck {
	box-shadow: 0 4px 20px rgba(36, 26, 21, 0.08);
	border-bottom-color: var(--fl-line);
	background: rgba(253, 246, 236, 0.97);
}

.fl-header__inner {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 3vw, 2.5rem);
	min-height: 74px;
	padding-block: 0.6rem;
}

.fl-brand {
	flex: 0 0 auto;
	margin-right: auto;
}

.fl-brand img,
.custom-logo {
	max-height: 58px;
	width: auto;
}

.fl-brand__text {
	display: block;
	text-decoration: none;
	line-height: 1.1;
}

.fl-brand__name {
	display: block;
	font-family: var(--fl-serif);
	font-size: clamp(1.3rem, 3.5vw, 1.7rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--fl-primary);
}

.fl-brand__bn {
	display: block;
	margin-top: 2px;
	font-family: var(--fl-bengali);
	font-size: 0.82rem;
	color: var(--fl-ink-soft);
}

.fl-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2.2vw, 1.9rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.fl-nav__list li {
	position: relative;
}

.fl-nav__list a {
	position: relative;
	display: block;
	padding: 0.4rem 0;
	color: var(--fl-ink);
	font-size: 0.93rem;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
}

.fl-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--fl-accent);
	transition: width 0.25s var(--fl-ease);
}

.fl-nav__list a:hover::after,
.fl-nav__list .current-menu-item > a::after,
.fl-nav__list .current_page_item > a::after {
	width: 100%;
}

.fl-nav__list .current-menu-item > a,
.fl-nav__list .current_page_item > a {
	color: var(--fl-primary);
}

/* Dropdowns */
.fl-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: -1rem;
	min-width: 210px;
	margin: 0;
	padding: 0.5rem 0;
	list-style: none;
	background: var(--fl-white);
	border-radius: 12px;
	box-shadow: var(--fl-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s var(--fl-ease), transform 0.2s var(--fl-ease), visibility 0.2s;
}

.fl-nav__list li:hover > .sub-menu,
.fl-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.fl-nav__list .sub-menu a {
	padding: 0.5rem 1rem;
}

.fl-nav__list .sub-menu a::after {
	display: none;
}

.fl-nav__list .sub-menu a:hover {
	background: rgba(var(--fl-primary-rgb), 0.06);
	color: var(--fl-primary);
}

.fl-header__cta {
	flex: 0 0 auto;
}

.fl-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--fl-line);
	border-radius: 10px;
	background: transparent;
	cursor: pointer;
}

.fl-burger span {
	display: block;
	width: 20px;
	height: 2px;
	margin-inline: auto;
	background: var(--fl-ink);
	border-radius: 2px;
	transition: transform 0.25s var(--fl-ease), opacity 0.2s var(--fl-ease);
}

.fl-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fl-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.fl-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 6. Hero ---------------------------------------------------------------- */

.fl-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(520px, 82vh, 760px);
	overflow: hidden;
	background: var(--fl-ink);
	color: var(--fl-white);
	isolation: isolate;
}

.fl-hero.no-image {
	background:
		radial-gradient(circle at 78% 18%, rgba(var(--fl-accent-rgb), 0.32), transparent 52%),
		radial-gradient(circle at 12% 88%, rgba(var(--fl-primary-rgb), 0.6), transparent 55%),
		linear-gradient(150deg, #3a1210, #1b0f0c 65%);
}

.fl-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.04);
	z-index: -2;
}

.fl-hero__veil {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(100deg, rgba(20, 10, 8, 0.9) 0%, rgba(20, 10, 8, 0.66) 45%, rgba(20, 10, 8, 0.35) 100%);
}

.fl-hero.no-image .fl-hero__veil {
	background: none;
}

/* Alpona corner motif drawn in CSS */
.fl-hero__alpona {
	position: absolute;
	right: -80px;
	top: -80px;
	width: 380px;
	height: 380px;
	z-index: -1;
	opacity: 0.16;
	background:
		repeating-conic-gradient(from 0deg at 50% 50%, var(--fl-accent) 0deg 4deg, transparent 4deg 22deg);
	mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 70%);
	-webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 70%);
	pointer-events: none;
}

.fl-hero__inner {
	position: relative;
	max-width: 780px;
	margin-inline: auto;
	padding-block: clamp(4rem, 12vh, 7rem);
	text-align: left;
}

.fl-hero .fl-eyebrow {
	color: var(--fl-accent);
}

.fl-hero__bn {
	margin: 0 0 0.5rem;
	font-family: var(--fl-bengali);
	font-size: clamp(1.15rem, 3vw, 1.6rem);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
}

.fl-hero__title {
	margin: 0 0 1rem;
	font-size: clamp(2.15rem, 6.2vw, 4.1rem);
	line-height: 1.06;
	color: var(--fl-white);
	max-width: 20ch;
}

.fl-hero__text {
	max-width: 54ch;
	margin-bottom: 2rem;
	font-size: clamp(1rem, 1.9vw, 1.13rem);
	color: rgba(255, 255, 255, 0.86);
}

.fl-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-bottom: 2.5rem;
}

.fl-hero .fl-btn--outline {
	border-color: rgba(255, 255, 255, 0.45);
	color: var(--fl-white);
}

.fl-hero .fl-btn--outline:hover {
	background: var(--fl-white);
	border-color: var(--fl-white);
	color: var(--fl-primary);
}

.fl-hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fl-hero__fact {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.82);
}

.fl-hero__fact .fl-icon {
	color: var(--fl-accent);
}

.fl-hero__fact .fl-stars {
	color: rgba(255, 255, 255, 0.28);
}

.fl-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 1.4rem;
	transform: translateX(-50%) rotate(90deg);
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: var(--fl-white);
	animation: fl-bob 2.4s ease-in-out infinite;
}

@keyframes fl-bob {
	0%, 100% { transform: translateX(-50%) rotate(90deg) translateX(0); }
	50% { transform: translateX(-50%) rotate(90deg) translateX(6px); }
}

/* 7. Sections ------------------------------------------------------------ */

/* Highlights */
.fl-highlights {
	padding-block: clamp(2.5rem, 6vw, 4rem);
}

.fl-highlights__grid {
	display: grid;
	gap: clamp(1rem, 2.5vw, 1.75rem);
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.fl-highlight {
	padding: clamp(1.5rem, 3vw, 2rem);
	background: var(--fl-white);
	border-radius: var(--fl-radius-lg);
	box-shadow: var(--fl-shadow);
	border-top: 3px solid var(--fl-accent);
}

.fl-highlight__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 1rem;
	border-radius: 14px;
	background: rgba(var(--fl-primary-rgb), 0.08);
	color: var(--fl-primary);
}

.fl-highlight__title {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.fl-highlight__text {
	margin: 0;
	font-size: 0.94rem;
	color: var(--fl-ink-soft);
}

/* About */
.fl-about__grid {
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

@media (min-width: 56rem) {
	.fl-about__grid {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	}
}

.fl-about__media {
	position: relative;
	/* Keeps the offset frame (::before, z-index -1) inside this element's own
	   stacking context instead of dropping behind the page background. */
	isolation: isolate;
}

.fl-about__img {
	width: 100%;
	border-radius: var(--fl-radius-lg);
	box-shadow: var(--fl-shadow-lg);
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.fl-about__media::before {
	content: "";
	position: absolute;
	inset: 1.1rem -1.1rem -1.1rem 1.1rem;
	border: 2px solid rgba(var(--fl-accent-rgb), 0.55);
	border-radius: var(--fl-radius-lg);
	z-index: -1;
}

.fl-about__badge {
	position: absolute;
	right: -0.5rem;
	bottom: -1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.15rem;
	padding: 1rem 1.2rem;
	background: var(--fl-white);
	border-radius: var(--fl-radius);
	box-shadow: var(--fl-shadow-lg);
	text-align: center;
}

.fl-about__badge strong {
	font-family: var(--fl-serif);
	font-size: 1.9rem;
	line-height: 1;
	color: var(--fl-primary);
}

.fl-about__badge span {
	font-size: 0.72rem;
	color: var(--fl-ink-soft);
}

.fl-about__list {
	margin: 1.5rem 0 2rem;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.6rem;
}

.fl-about__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.6em;
	font-size: 0.94rem;
	color: var(--fl-ink-soft);
}

.fl-about__list .fl-icon {
	margin-top: 3px;
	color: var(--fl-accent);
}

/* Menu filter tabs */
.fl-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.fl-filter__btn {
	padding: 0.55em 1.15em;
	border: 1px solid var(--fl-line);
	border-radius: 999px;
	background: var(--fl-white);
	color: var(--fl-ink-soft);
	font-family: inherit;
	font-size: 0.86rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s var(--fl-ease);
}

.fl-filter__btn:hover {
	border-color: var(--fl-primary);
	color: var(--fl-primary);
}

.fl-filter__btn.is-active {
	background: var(--fl-primary);
	border-color: var(--fl-primary);
	color: var(--fl-white);
}

/* Dish cards */
.fl-menu__grid {
	display: grid;
	gap: clamp(1rem, 2.2vw, 1.5rem);
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
}

.fl-dish {
	display: flex;
	gap: 1rem;
	padding: 0.9rem;
	background: var(--fl-white);
	border-radius: var(--fl-radius);
	box-shadow: 0 1px 3px rgba(36, 26, 21, 0.05);
	transition: transform 0.22s var(--fl-ease), box-shadow 0.22s var(--fl-ease);
}

.fl-dish:hover {
	transform: translateY(-3px);
	box-shadow: var(--fl-shadow);
}

.fl-dish[hidden] {
	display: none;
}

.fl-dish__media {
	position: relative;
	flex: 0 0 92px;
	width: 92px;
	height: 92px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--fl-cream-deep);
}

.fl-dish__media .fl-img,
.fl-dish__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1;
}

.fl-dish__media .fl-tag--popular {
	top: 0.3rem;
	left: 0.3rem;
	padding: 0.15em 0.45em;
	font-size: 0.58rem;
}

.fl-dish__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.fl-dish__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
}

.fl-dish__title {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.3;
}

.fl-dish__bn {
	display: block;
	margin-top: 1px;
	font-family: var(--fl-bengali);
	font-size: 0.8rem;
	font-weight: 400;
	color: var(--fl-ink-soft);
}

.fl-dish__price {
	flex: 0 0 auto;
	margin: 0;
	font-family: var(--fl-serif);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--fl-primary);
	white-space: nowrap;
}

.fl-price-note {
	display: block;
	font-family: var(--fl-sans);
	font-size: 0.68rem;
	font-weight: 500;
	color: var(--fl-ink-soft);
	white-space: normal;
}

.fl-dish__desc {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.55;
	color: var(--fl-ink-soft);
}

.fl-dish__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: auto 0 0;
	padding: 0;
	list-style: none;
}

/* Menu category blocks on the archive */
.fl-menu-cat {
	margin-bottom: clamp(2.5rem, 6vw, 4rem);
	scroll-margin-top: 150px;
}

.fl-menu-cat__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.25rem 1rem;
	padding-bottom: 0.75rem;
	margin-bottom: 1.5rem;
	border-bottom: 2px solid rgba(var(--fl-accent-rgb), 0.4);
}

.fl-menu-cat__title {
	margin: 0;
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	color: var(--fl-primary);
}

.fl-menu-cat__desc {
	margin: 0;
	font-size: 0.88rem;
	color: var(--fl-ink-soft);
}

.fl-menu-jump {
	position: sticky;
	top: 74px;
	z-index: 100;
	background: rgba(253, 246, 236, 0.96);
	backdrop-filter: blur(8px);
	border-block: 1px solid var(--fl-line);
}

.fl-menu-jump__inner {
	display: flex;
	gap: 1.25rem;
	overflow-x: auto;
	padding-block: 0.8rem;
	scrollbar-width: thin;
}

.fl-menu-jump a {
	flex: 0 0 auto;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--fl-ink-soft);
	text-decoration: none;
	white-space: nowrap;
}

.fl-menu-jump a:hover {
	color: var(--fl-primary);
}

/* Events */
.fl-events {
	background: var(--fl-ink);
	color: rgba(255, 255, 255, 0.88);
	overflow: hidden;
}

.fl-events__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 85% 10%, rgba(var(--fl-accent-rgb), 0.22), transparent 45%),
		radial-gradient(circle at 5% 95%, rgba(var(--fl-primary-rgb), 0.5), transparent 50%);
	pointer-events: none;
}

.fl-events .fl-wrap {
	position: relative;
}

.fl-events .fl-sec-title,
.fl-events .fl-sec-head .fl-sec-title {
	color: var(--fl-white);
}

.fl-events .fl-eyebrow {
	color: var(--fl-accent);
}

.fl-events .fl-sec-text {
	color: rgba(255, 255, 255, 0.75);
}

.fl-events__grid {
	display: grid;
	gap: clamp(1.25rem, 3vw, 2rem);
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
}

.fl-event {
	display: flex;
	flex-direction: column;
	background: var(--fl-white);
	border-radius: var(--fl-radius-lg);
	overflow: hidden;
	box-shadow: var(--fl-shadow);
	transition: transform 0.25s var(--fl-ease), box-shadow 0.25s var(--fl-ease);
}

.fl-event:hover {
	transform: translateY(-5px);
	box-shadow: var(--fl-shadow-lg);
}

.fl-event.is-past {
	opacity: 0.78;
}

.fl-event__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--fl-cream-deep);
}

.fl-event__media .fl-img,
.fl-event__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--fl-ease);
}

.fl-event:hover .fl-event__img {
	transform: scale(1.05);
}

.fl-event__date {
	position: absolute;
	top: 0.8rem;
	left: 0.8rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0.45rem 0.7rem;
	background: var(--fl-white);
	border-radius: 10px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
	line-height: 1;
}

.fl-event__date b {
	font-family: var(--fl-serif);
	font-size: 1.35rem;
	color: var(--fl-primary);
}

.fl-event__date i {
	font-size: 0.65rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fl-ink-soft);
}

.fl-event__flag {
	position: absolute;
	top: 0.8rem;
	right: 0.8rem;
	padding: 0.3em 0.7em;
	border-radius: 999px;
	background: var(--fl-primary);
	color: var(--fl-white);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.fl-event__flag--past {
	background: rgba(36, 26, 21, 0.75);
}

.fl-event__body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.25rem 1.35rem 1.4rem;
	flex: 1;
}

.fl-event__type {
	margin: 0;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--fl-accent);
}

.fl-event__title {
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.25;
}

.fl-event__title a {
	color: inherit;
	text-decoration: none;
}

.fl-event__title a:hover {
	color: var(--fl-primary);
}

.fl-event__band {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.4em;
	margin: 0;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--fl-ink);
}

.fl-event__band .fl-icon {
	color: var(--fl-primary);
}

.fl-event__genre {
	font-weight: 400;
	color: var(--fl-ink-soft);
}

.fl-event__genre::before {
	content: "· ";
}

.fl-event__meta {
	display: grid;
	gap: 0.3rem;
	margin: 0.25rem 0 0;
	padding: 0;
	list-style: none;
}

.fl-event__meta li {
	display: flex;
	align-items: center;
	gap: 0.5em;
	font-size: 0.85rem;
	color: var(--fl-ink-soft);
}

.fl-event__meta .fl-icon {
	color: var(--fl-accent);
}

.fl-event__excerpt {
	margin: 0.25rem 0 0;
	font-size: 0.88rem;
	color: var(--fl-ink-soft);
}

.fl-event__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin-top: auto;
	padding-top: 1rem;
}

.fl-event__link {
	display: inline-flex;
	align-items: center;
	gap: 0.3em;
	margin-left: auto;
	font-size: 0.83rem;
	font-weight: 600;
	text-decoration: none;
}

.fl-events__empty {
	max-width: 520px;
	margin-inline: auto;
	padding: clamp(2rem, 5vw, 3rem);
	text-align: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px dashed rgba(255, 255, 255, 0.22);
	border-radius: var(--fl-radius-lg);
	color: rgba(255, 255, 255, 0.82);
}

.fl-events__empty .fl-icon {
	color: var(--fl-accent);
	margin-bottom: 0.75rem;
}

.fl-events__empty .fl-btn--outline {
	border-color: rgba(255, 255, 255, 0.4);
	color: var(--fl-white);
}

.fl-events__empty .fl-btn--outline:hover {
	background: var(--fl-white);
	color: var(--fl-primary);
}

/* Gallery */
.fl-gallery__grid {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
	grid-auto-rows: 200px;
}

.fl-gallery__item {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--fl-radius);
	background: var(--fl-cream);
	box-shadow: 0 1px 4px rgba(36, 26, 21, 0.08);
}

.fl-gallery__item[hidden] {
	display: none;
}

@media (min-width: 48rem) {
	.fl-gallery__item.is-wide {
		grid-column: span 2;
		grid-row: span 2;
	}
}

.fl-gallery__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--fl-ease);
}

.fl-gallery__item:hover .fl-gallery__img {
	transform: scale(1.07);
}

.fl-gallery__overlay {
	position: absolute;
	inset: auto 0 0 0;
	padding: 2rem 0.9rem 0.75rem;
	background: linear-gradient(transparent, rgba(20, 10, 8, 0.85));
	color: #fff;
	font-size: 0.82rem;
	font-weight: 500;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.25s var(--fl-ease), transform 0.25s var(--fl-ease);
}

.fl-gallery__item:hover .fl-gallery__overlay,
.fl-gallery__item:focus-visible .fl-gallery__overlay {
	opacity: 1;
	transform: translateY(0);
}

/* Lightbox */
.fl-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: clamp(1rem, 4vw, 3rem);
	background: rgba(15, 8, 6, 0.94);
	opacity: 0;
	transition: opacity 0.25s var(--fl-ease);
}

.fl-lightbox[hidden] {
	display: none;
}

.fl-lightbox.is-open {
	opacity: 1;
}

.fl-lightbox__figure {
	margin: 0;
	max-width: min(1100px, 100%);
	max-height: 100%;
	text-align: center;
}

.fl-lightbox__img {
	max-width: 100%;
	max-height: 78vh;
	margin-inline: auto;
	border-radius: 10px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
}

.fl-lightbox__caption {
	margin-top: 0.9rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
}

.fl-lightbox__close,
.fl-lightbox__nav {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
	transition: background-color 0.2s var(--fl-ease);
}

.fl-lightbox__close:hover,
.fl-lightbox__nav:hover {
	background: rgba(255, 255, 255, 0.24);
}

.fl-lightbox__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
}

.fl-lightbox__nav--prev {
	transform: rotate(180deg);
}

/* Reviews */
.fl-reviews__score {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	max-width: 520px;
	margin: 0 auto clamp(2rem, 4vw, 3rem);
	padding: 1.1rem 1.5rem;
	background: var(--fl-white);
	border-radius: var(--fl-radius-lg);
	box-shadow: var(--fl-shadow);
}

.fl-reviews__num {
	font-family: var(--fl-serif);
	font-size: 2.6rem;
	font-weight: 800;
	line-height: 1;
	color: var(--fl-primary);
}

.fl-reviews__score-body {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	font-size: 0.85rem;
	color: var(--fl-ink-soft);
}

.fl-slider {
	position: relative;
}

.fl-slider__track {
	display: flex;
	gap: clamp(1rem, 2.5vw, 1.75rem);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 0.5rem;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.fl-slider__track::-webkit-scrollbar {
	display: none;
}

.fl-review {
	flex: 0 0 min(100%, 380px);
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	padding: clamp(1.5rem, 3vw, 2rem);
	background: var(--fl-white);
	border-radius: var(--fl-radius-lg);
	box-shadow: var(--fl-shadow);
	position: relative;
}

.fl-review::before {
	content: "\201C";
	position: absolute;
	top: 0.35rem;
	right: 1.2rem;
	font-family: var(--fl-serif);
	font-size: 5rem;
	line-height: 1;
	color: rgba(var(--fl-accent-rgb), 0.28);
	pointer-events: none;
}

.fl-review__text {
	font-size: 0.97rem;
	color: var(--fl-ink-soft);
	flex: 1;
}

.fl-review__text p:last-child {
	margin-bottom: 0;
}

.fl-review__foot {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-top: 0.9rem;
	border-top: 1px solid var(--fl-line);
}

.fl-review__avatar {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border-radius: 50%;
	background: rgba(var(--fl-primary-rgb), 0.1);
	color: var(--fl-primary);
	font-family: var(--fl-serif);
	font-size: 1.15rem;
	font-weight: 700;
}

.fl-review__who {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
}

.fl-review__who cite {
	font-style: normal;
	font-weight: 600;
	font-size: 0.93rem;
}

.fl-review__src {
	font-size: 0.76rem;
	color: var(--fl-ink-soft);
}

.fl-review__src a {
	color: inherit;
}

.fl-slider__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

.fl-slider__btn {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--fl-line);
	border-radius: 50%;
	background: var(--fl-white);
	color: var(--fl-primary);
	cursor: pointer;
	transition: all 0.2s var(--fl-ease);
}

.fl-slider__btn:hover:not(:disabled) {
	background: var(--fl-primary);
	border-color: var(--fl-primary);
	color: #fff;
}

.fl-slider__btn:disabled {
	opacity: 0.35;
	cursor: default;
}

[data-slider-prev] {
	transform: rotate(180deg);
}

.fl-slider__dots {
	display: flex;
	gap: 0.4rem;
}

.fl-slider__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(36, 26, 21, 0.2);
	cursor: pointer;
	transition: all 0.2s var(--fl-ease);
}

.fl-slider__dot.is-active {
	background: var(--fl-primary);
	width: 22px;
	border-radius: 999px;
}

/* Contact */
.fl-contact__grid {
	display: grid;
	gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 58rem) {
	.fl-contact__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	}
}

.fl-contact__list {
	margin: 0 0 1.75rem;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 1.1rem;
}

.fl-contact__list li {
	display: flex;
	gap: 0.9rem;
}

.fl-contact__list b {
	display: block;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fl-primary);
	margin-bottom: 0.15rem;
}

.fl-contact__list span:last-child {
	font-size: 0.94rem;
	color: var(--fl-ink-soft);
	line-height: 1.6;
}

.fl-contact__list a {
	text-decoration: none;
}

.fl-contact__list a:hover {
	text-decoration: underline;
}

.fl-contact__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border-radius: 12px;
	background: rgba(var(--fl-primary-rgb), 0.08);
	color: var(--fl-primary);
}

.fl-contact__pluscode {
	display: block;
	margin-top: 0.2rem;
	font-size: 0.8rem;
	font-style: normal;
	font-family: ui-monospace, "SF Mono", Menlo, monospace;
	color: var(--fl-ink-soft);
	opacity: 0.75;
}

.fl-contact__map {
	border-radius: var(--fl-radius);
	overflow: hidden;
	box-shadow: var(--fl-shadow);
	background: var(--fl-cream-deep);
}

.fl-contact__map iframe {
	display: block;
	filter: saturate(0.9);
}

.fl-contact__map-fallback {
	display: grid;
	place-items: center;
	gap: 0.5rem;
	height: 220px;
	color: var(--fl-primary);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
}

.fl-contact__form {
	padding: clamp(1.5rem, 3.5vw, 2.5rem);
	background: var(--fl-white);
	border-radius: var(--fl-radius-lg);
	box-shadow: var(--fl-shadow-lg);
	border-top: 3px solid var(--fl-accent);
}

.fl-contact__form-title {
	font-size: 1.5rem;
	margin-bottom: 0.4rem;
}

.fl-contact__form-text {
	font-size: 0.9rem;
	color: var(--fl-ink-soft);
	margin-bottom: 1.5rem;
}

/* CTA band */
.fl-cta-band {
	background: linear-gradient(120deg, var(--fl-primary), var(--fl-primary-dark));
	color: #fff;
	padding-block: clamp(2.5rem, 6vw, 4rem);
}

.fl-cta-band__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.fl-cta-band h2 {
	margin: 0 0 0.3rem;
	color: #fff;
	font-size: clamp(1.4rem, 3.5vw, 2.1rem);
}

.fl-cta-band p {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
}

.fl-cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* 8. Archive & single pages ---------------------------------------------- */

.fl-page-head {
	position: relative;
	padding-block: clamp(2.75rem, 7vw, 4.5rem);
	text-align: center;
	background: var(--fl-cream-deep);
	overflow: hidden;
}

.fl-page-head--dark {
	background: var(--fl-ink);
	color: rgba(255, 255, 255, 0.85);
}

.fl-page-head--dark .fl-page-title {
	color: #fff;
}

.fl-page-head--dark .fl-eyebrow {
	color: var(--fl-accent);
}

.fl-page-head--dark .fl-page-head__text {
	color: rgba(255, 255, 255, 0.75);
}

.fl-page-head__alpona {
	position: absolute;
	left: 50%;
	top: -160px;
	width: 460px;
	height: 460px;
	transform: translateX(-50%);
	opacity: 0.09;
	background: repeating-conic-gradient(from 0deg at 50% 50%, var(--fl-primary) 0deg 3deg, transparent 3deg 18deg);
	mask-image: radial-gradient(circle, #000 25%, transparent 65%);
	-webkit-mask-image: radial-gradient(circle, #000 25%, transparent 65%);
	pointer-events: none;
}

.fl-page-head--dark .fl-page-head__alpona {
	background: repeating-conic-gradient(from 0deg at 50% 50%, var(--fl-accent) 0deg 3deg, transparent 3deg 18deg);
	opacity: 0.14;
}

.fl-page-head .fl-wrap {
	position: relative;
}

.fl-page-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.9rem, 5vw, 3.1rem);
}

.fl-page-head__text {
	max-width: 620px;
	margin: 0.75rem auto 0;
	color: var(--fl-ink-soft);
}

.fl-page-head__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

/* Event hero */
.fl-event-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: clamp(380px, 60vh, 560px);
	padding-block: clamp(2.5rem, 6vw, 4rem);
	background: var(--fl-ink);
	background-size: cover;
	background-position: center;
	color: #fff;
	isolation: isolate;
}

.fl-event-hero__veil {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(0deg, rgba(15, 8, 6, 0.95) 5%, rgba(15, 8, 6, 0.55) 60%, rgba(15, 8, 6, 0.3));
}

.fl-event-hero:not(.has-image) {
	background:
		radial-gradient(circle at 80% 15%, rgba(var(--fl-accent-rgb), 0.28), transparent 50%),
		linear-gradient(140deg, #40140f, #180d0a);
}

.fl-event-hero__inner {
	position: relative;
	width: 100%;
}

.fl-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	margin-bottom: 0.9rem;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.65);
}

.fl-breadcrumb a {
	color: var(--fl-accent);
	text-decoration: none;
}

.fl-event-hero__title {
	max-width: 22ch;
	margin: 0 0 0.75rem;
	font-size: clamp(1.9rem, 5.5vw, 3.4rem);
	color: #fff;
}

.fl-event-hero__band {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.45em;
	margin-bottom: 1rem;
	font-size: 1.05rem;
	font-weight: 600;
}

.fl-event-hero__band .fl-icon {
	color: var(--fl-accent);
}

.fl-event-hero__band span {
	font-weight: 400;
	color: rgba(255, 255, 255, 0.72);
}

.fl-event-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1.75rem;
	margin: 0 0 1.75rem;
	padding: 0;
	list-style: none;
}

.fl-event-hero__meta li {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
}

.fl-event-hero__meta .fl-icon {
	color: var(--fl-accent);
}

.fl-event-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.fl-single-event__grid {
	display: grid;
	gap: clamp(2rem, 4vw, 3.5rem);
}

@media (min-width: 58rem) {
	.fl-single-event__grid {
		grid-template-columns: minmax(0, 1fr) 360px;
		align-items: start;
	}
}

.fl-card {
	padding: clamp(1.25rem, 3vw, 1.85rem);
	background: var(--fl-white);
	border-radius: var(--fl-radius-lg);
	box-shadow: var(--fl-shadow);
	margin-bottom: 1.5rem;
}

.fl-card--form {
	border-top: 3px solid var(--fl-accent);
}

.fl-card__title {
	font-size: 1.25rem;
	margin-bottom: 0.4rem;
}

.fl-card__text {
	font-size: 0.88rem;
	color: var(--fl-ink-soft);
	margin-bottom: 1.25rem;
}

.fl-card__address {
	font-style: normal;
	white-space: pre-line;
	font-size: 0.92rem;
	color: var(--fl-ink-soft);
	margin-bottom: 1rem;
}

.fl-terms {
	margin-top: 2rem;
	font-size: 0.86rem;
	color: var(--fl-ink-soft);
}

.fl-terms a {
	display: inline-block;
	margin-right: 0.4rem;
}

/* 404 */
.fl-404 {
	text-align: center;
}

.fl-404__code {
	font-family: var(--fl-serif);
	font-size: clamp(4rem, 16vw, 9rem);
	font-weight: 800;
	line-height: 1;
	margin: 0;
	color: rgba(var(--fl-primary-rgb), 0.15);
}

.fl-404__text {
	max-width: 480px;
	margin: 0.75rem auto 2rem;
	color: var(--fl-ink-soft);
}

.fl-404__links,
.fl-none__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.fl-none {
	max-width: 520px;
	margin-inline: auto;
	padding: clamp(2rem, 5vw, 3rem);
	text-align: center;
	background: var(--fl-white);
	border-radius: var(--fl-radius-lg);
	box-shadow: var(--fl-shadow);
}

.fl-none .fl-icon {
	color: rgba(var(--fl-primary-rgb), 0.3);
	margin-bottom: 0.75rem;
}

.fl-none__title {
	font-size: 1.5rem;
}

.fl-none__text {
	color: var(--fl-ink-soft);
	margin-bottom: 1.5rem;
}

/* 9. Blog, comments, sidebar --------------------------------------------- */

.fl-posts {
	display: grid;
	gap: clamp(1.25rem, 3vw, 2rem);
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
}

.fl-post-card {
	display: flex;
	flex-direction: column;
	background: var(--fl-white);
	border-radius: var(--fl-radius-lg);
	overflow: hidden;
	box-shadow: var(--fl-shadow);
	transition: transform 0.22s var(--fl-ease), box-shadow 0.22s var(--fl-ease);
}

.fl-post-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--fl-shadow-lg);
}

.fl-post-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

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

.fl-post-card__body {
	padding: 1.35rem 1.4rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.fl-post-card__cat {
	margin: 0 0 0.4rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--fl-accent);
}

.fl-post-card__title {
	font-size: 1.25rem;
	margin-bottom: 0.4rem;
}

.fl-post-card__title a {
	color: inherit;
	text-decoration: none;
}

.fl-post-card__title a:hover {
	color: var(--fl-primary);
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4em;
	font-size: 0.8rem;
	color: var(--fl-ink-soft);
	margin-bottom: 0.75rem;
}

.entry-meta .sep {
	opacity: 0.5;
}

.fl-post-card__excerpt {
	font-size: 0.9rem;
	color: var(--fl-ink-soft);
	flex: 1;
}

.fl-post-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	margin-top: auto;
	font-size: 0.86rem;
	font-weight: 600;
	text-decoration: none;
}

.fl-single__thumb {
	margin: 0;
	padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

.fl-single__thumb img {
	width: 100%;
	border-radius: var(--fl-radius-lg);
	box-shadow: var(--fl-shadow-lg);
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.fl-post-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--fl-line);
	font-size: 0.9rem;
	font-weight: 600;
}

.fl-post-nav a {
	text-decoration: none;
}

.fl-post-nav__next {
	margin-left: auto;
	text-align: right;
}

.pagination,
.navigation.pagination {
	margin-top: clamp(2rem, 5vw, 3rem);
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem;
}

.page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding-inline: 0.6rem;
	border-radius: 10px;
	background: var(--fl-white);
	border: 1px solid var(--fl-line);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--fl-primary);
	border-color: var(--fl-primary);
	color: #fff;
}

.fl-sidebar .widget {
	padding: 1.4rem 1.5rem;
	margin-bottom: 1.25rem;
	background: var(--fl-white);
	border-radius: var(--fl-radius);
	box-shadow: var(--fl-shadow);
}

.widget-title {
	font-size: 1.05rem;
	margin-bottom: 0.85rem;
	padding-bottom: 0.6rem;
	border-bottom: 2px solid rgba(var(--fl-accent-rgb), 0.4);
}

.fl-sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.fl-sidebar li {
	padding-block: 0.35rem;
	font-size: 0.92rem;
	border-bottom: 1px solid var(--fl-line);
}

.fl-sidebar li:last-child {
	border-bottom: 0;
}

.fl-sidebar a {
	text-decoration: none;
}

.fl-comments {
	max-width: 780px;
	margin-top: clamp(2.5rem, 6vw, 4rem);
	padding-top: clamp(2rem, 4vw, 2.5rem);
	border-top: 1px solid var(--fl-line);
}

.fl-comments__title {
	font-size: 1.4rem;
}

.fl-comments__list,
.fl-comments__list .children {
	margin: 0 0 2rem;
	padding: 0;
	list-style: none;
}

.fl-comments__list .children {
	margin: 1rem 0 0 clamp(1rem, 4vw, 2.5rem);
}

.fl-comments__list .comment-body {
	padding: 1.25rem 1.4rem;
	margin-bottom: 1rem;
	background: var(--fl-white);
	border-radius: var(--fl-radius);
	box-shadow: 0 1px 3px rgba(36, 26, 21, 0.06);
}

.fl-comments__list .comment-meta {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 0.75rem;
	font-size: 0.83rem;
}

.fl-comments__list .comment-author img {
	border-radius: 50%;
}

.fl-comments__list .fn {
	font-style: normal;
	font-weight: 600;
}

.comment-respond {
	padding: clamp(1.25rem, 3vw, 2rem);
	background: var(--fl-white);
	border-radius: var(--fl-radius-lg);
	box-shadow: var(--fl-shadow);
}

.comment-form p {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.comment-form .form-submit {
	margin-bottom: 0;
}

.comment-form input[type="submit"] {
	align-self: flex-start;
}

.fl-comments__notes,
.comment-notes {
	font-size: 0.83rem;
	color: var(--fl-ink-soft);
}

/* 10. Footer & floating actions ------------------------------------------ */

.fl-footer {
	position: relative;
	margin-top: 0;
	background: #1b100d;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.92rem;
	overflow: hidden;
}

.fl-footer__pattern {
	position: absolute;
	inset: 0;
	opacity: 0.07;
	background:
		radial-gradient(circle at 88% 8%, var(--fl-accent), transparent 38%),
		radial-gradient(circle at 8% 92%, var(--fl-primary), transparent 45%);
	pointer-events: none;
}

.fl-footer__grid {
	position: relative;
	display: grid;
	gap: clamp(1.75rem, 4vw, 3rem);
	padding-block: clamp(3rem, 7vw, 4.5rem);
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.fl-footer__col--brand {
	grid-column: span 1;
}

@media (min-width: 70rem) {
	.fl-footer__col--brand {
		grid-column: span 1;
		padding-right: 2rem;
	}
}

.fl-footer__name {
	margin: 0 0 0.25rem;
	font-size: 1.5rem;
	color: #fff;
}

.fl-footer__bn {
	margin: 0 0 0.9rem;
	font-family: var(--fl-bengali);
	font-size: 0.95rem;
	color: var(--fl-accent);
}

.fl-footer__blurb {
	font-size: 0.88rem;
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.fl-footer__heading {
	margin: 0 0 0.9rem;
	font-family: var(--fl-sans);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--fl-accent);
}

.fl-footer__heading--tight {
	margin-top: 1.5rem;
}

.fl-footer__address {
	font-style: normal;
	line-height: 1.75;
	font-size: 0.88rem;
	margin-bottom: 0.9rem;
}

.fl-footer__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--fl-accent);
	text-decoration: none;
}

.fl-hours {
	margin: 0 0 1rem;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.5rem;
}

.fl-hours li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.86rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fl-hours b {
	color: #fff;
	font-weight: 600;
	text-align: right;
}

.fl-footer__note {
	font-size: 0.79rem;
	line-height: 1.6;
	opacity: 0.7;
	margin: 0;
}

.fl-footer__contact {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.6rem;
}

.fl-footer__contact a {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.88rem;
	text-decoration: none;
}

.fl-footer__contact a:hover {
	color: var(--fl-accent);
}

.fl-footer__contact .fl-icon {
	color: var(--fl-accent);
}

.fl-social {
	display: flex;
	gap: 0.6rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fl-social a {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.2s var(--fl-ease);
}

.fl-social a:hover {
	background: var(--fl-accent);
	color: #2a1c05;
	transform: translateY(-2px);
}

.fl-footer__bar {
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.fl-footer__bar-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1.5rem;
	padding-block: 1.2rem;
	font-size: 0.81rem;
}

.fl-copy,
.fl-credit {
	margin: 0;
}

.fl-credit {
	opacity: 0.5;
}

.fl-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fl-footer__nav a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.83rem;
}

.fl-footer__nav a:hover {
	color: var(--fl-accent);
}

/* Sticky mobile actions */
.fl-sticky-actions {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 300;
	display: none;
	background: var(--fl-white);
	border-top: 1px solid var(--fl-line);
	box-shadow: 0 -4px 18px rgba(36, 26, 21, 0.1);
	padding-bottom: env(safe-area-inset-bottom);
}

.fl-sticky-actions__btn {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	padding: 0.6rem 0.25rem;
	color: var(--fl-primary);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	border-right: 1px solid var(--fl-line);
}

.fl-sticky-actions__btn:last-child {
	border-right: 0;
}

.fl-sticky-actions__btn--accent {
	background: var(--fl-primary);
	color: #fff;
}

.fl-to-top {
	position: fixed;
	right: 1.1rem;
	bottom: 1.4rem;
	z-index: 250;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: var(--fl-primary);
	color: #fff;
	cursor: pointer;
	box-shadow: 0 6px 20px rgba(var(--fl-primary-rgb), 0.35);
	transform: rotate(-90deg);
	transition: opacity 0.25s var(--fl-ease), transform 0.25s var(--fl-ease);
}

.fl-to-top[hidden] {
	display: none;
}

.fl-to-top:hover {
	background: var(--fl-primary-dark);
}

/* 11. Utilities & responsive --------------------------------------------- */

.fl-full-width {
	padding-block: clamp(2rem, 5vw, 3.5rem);
}

.fl-full-width > * {
	max-width: var(--fl-wrap);
	margin-inline: auto;
	padding-inline: clamp(1rem, 5vw, 2.5rem);
}

.fl-full-width > .alignfull {
	max-width: none;
	padding-inline: 0;
}

.fl-page-links {
	margin-top: 1.5rem;
	font-size: 0.9rem;
	font-weight: 600;
}

.fl-page-links a {
	display: inline-block;
	padding: 0.2em 0.6em;
	margin-left: 0.25rem;
	border: 1px solid var(--fl-line);
	border-radius: 6px;
	text-decoration: none;
}

@media (max-width: 61.9375rem) {
	.fl-header__cta {
		display: none;
	}

	.fl-burger {
		display: flex;
	}

	/* backdrop-filter makes the header a containing block for fixed children,
	   which would trap the drawer inside it. Solid background instead. */
	.fl-header,
	.fl-header.is-stuck {
		backdrop-filter: none;
		background: var(--fl-cream);
	}

	.fl-nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(340px, 86vw);
		z-index: 400;
		padding: 5.5rem 1.75rem 2rem;
		background: var(--fl-cream);
		box-shadow: -8px 0 40px rgba(36, 26, 21, 0.2);
		transform: translateX(100%);
		transition: transform 0.3s var(--fl-ease);
		overflow-y: auto;
	}

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

	.fl-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.fl-nav__list > li {
		border-bottom: 1px solid var(--fl-line);
	}

	.fl-nav__list a {
		padding: 0.9rem 0;
		font-size: 1.02rem;
	}

	.fl-nav__list a::after {
		display: none;
	}

	.fl-nav__list .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: transparent;
		padding: 0 0 0.5rem 1rem;
		min-width: 0;
	}

	.fl-nav__list .sub-menu a {
		padding: 0.5rem 0;
		font-size: 0.92rem;
	}

	body.fl-nav-open {
		overflow: hidden;
	}

	body.fl-nav-open::after {
		content: "";
		position: fixed;
		inset: 0;
		z-index: 350;
		background: rgba(20, 12, 9, 0.5);
	}

	.fl-sticky-actions {
		display: flex;
	}

	body {
		padding-bottom: 62px;
	}

	.fl-to-top {
		bottom: 5.2rem;
	}
}

@media (max-width: 47.9375rem) {
	.fl-topbar__item:not(.fl-topbar__item--phone) {
		display: none;
	}

	.fl-topbar__item--phone {
		margin-inline: auto;
	}

	.fl-hero__inner {
		text-align: center;
	}

	.fl-hero__title,
	.fl-hero__text {
		margin-inline: auto;
	}

	.fl-hero__actions,
	.fl-hero__facts {
		justify-content: center;
	}

	.fl-hero .fl-eyebrow {
		justify-content: center;
	}

	.fl-about__media::before {
		display: none;
	}

	.fl-about__badge {
		right: 0.75rem;
		bottom: -1rem;
		padding: 0.75rem 1rem;
	}

	.fl-gallery__grid {
		grid-auto-rows: 150px;
		grid-template-columns: repeat(auto-fill, minmax(min(100%, 150px), 1fr));
	}

	.fl-lightbox__nav {
		position: absolute;
		bottom: 1.5rem;
	}

	.fl-lightbox__nav--prev { left: 25%; }
	.fl-lightbox__nav--next { right: 25%; }

	.fl-menu-jump {
		top: 68px;
	}

	.fl-cta-band__inner {
		text-align: center;
		justify-content: center;
	}

	.fl-cta-band__actions {
		justify-content: center;
		width: 100%;
	}
}

@media (max-width: 30rem) {
	.fl-dish {
		gap: 0.75rem;
		padding: 0.75rem;
	}

	.fl-dish__media {
		flex: 0 0 70px;
		width: 70px;
		height: 70px;
	}

	.fl-dish__head {
		flex-direction: column;
		gap: 0.15rem;
	}

	.fl-reviews__score {
		flex-direction: column;
		text-align: center;
		gap: 0.5rem;
	}
}

/* Scroll-in animation */
@media (prefers-reduced-motion: no-preference) {
	[data-reveal] {
		opacity: 0;
		transform: translateY(22px);
		transition: opacity 0.6s var(--fl-ease), transform 0.6s var(--fl-ease);
	}

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

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* Print */
@media print {
	.fl-topbar,
	.fl-header,
	.fl-footer,
	.fl-sticky-actions,
	.fl-to-top,
	.fl-hero__scroll,
	.fl-filter,
	.fl-contact__form,
	.fl-menu-jump {
		display: none !important;
	}

	body {
		background: #fff;
		padding-bottom: 0;
	}

	.fl-dish,
	.fl-event {
		box-shadow: none;
		border: 1px solid #ddd;
		break-inside: avoid;
	}
}
