:root {
	--bg: #111410;
	--surface: #191c19;
	--surface-2: #20231f;
	--surface-3: #282b27;
	--text: #e1e3dd;
	--muted: #dbc2b0;
	--line: rgba(255, 184, 125, .14);
	--primary: #f79432;
	--primary-soft: #ffb87d;
	--teal: #14a19b;
	--teal-soft: #63d9d2;
	--red: #e6484f;
	--paper: #f4eee6;
	--shadow: 0 18px 50px rgba(0, 0, 0, .28);
	--radius: 18px;
}

.bhm-modern-light {
	--bg: #fff8f5;
	--surface: #ffffff;
	--surface-2: #fff1e8;
	--surface-3: #f7e5d9;
	--text: #231a13;
	--muted: #544336;
	--line: rgba(136, 115, 100, .22);
	--primary: #f79432;
	--primary-soft: #8f4e00;
	--teal: #009c96;
	--teal-soft: #0f766f;
	--red: #ba1a1a;
	--paper: #ffffff;
	--shadow: 0 18px 48px rgba(143, 78, 0, .12);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: "Inter", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

.bhm-modern-light,
.bhm-modern-light body {
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

body.has-modal {
	overflow: hidden;
}

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

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

.container {
	width: min(1280px, calc(100% - 48px));
	margin: 0 auto;
}

.topbar {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	background: rgba(18, 20, 18, .78);
	backdrop-filter: blur(20px);
}

.bhm-modern-light .topbar {
	border-bottom-color: rgba(35, 26, 19, .1);
	background: rgba(255, 248, 245, .9);
}

.admin-bar .topbar {
	top: 32px;
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 82px;
}

.logo img,
.custom-logo {
	width: auto;
	max-width: 230px;
	max-height: 58px;
	object-fit: contain;
}

.navlinks .menu {
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.navlinks a {
	color: var(--text);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
	transition: color .2s ease;
}

.navlinks a:hover,
.navlinks a:focus-visible {
	color: var(--primary);
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: transparent;
	color: var(--text);
	padding: 10px 16px;
	font-weight: 900;
	text-transform: uppercase;
}

.modern-page {
	overflow: hidden;
}

.modern-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 650px;
	padding: 94px 0 44px;
}

.modern-hero__image,
.modern-hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.modern-hero__image {
	object-fit: cover;
	filter: brightness(.42);
}

.bhm-modern-light .modern-hero__image {
	filter: brightness(.72);
}

.modern-hero__shade {
	background:
		linear-gradient(90deg, rgba(17, 20, 16, .92), rgba(17, 20, 16, .5), rgba(17, 20, 16, .1)),
		linear-gradient(0deg, var(--bg), transparent 34%);
}

.bhm-modern-light .modern-hero__shade {
	background:
		linear-gradient(90deg, rgba(255, 248, 245, .86), rgba(255, 248, 245, .46), rgba(255, 248, 245, .12)),
		linear-gradient(0deg, var(--bg), transparent 38%);
}

.modern-hero__content {
	position: relative;
	z-index: 2;
	max-width: 1280px;
}

.status-chip {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 22px;
	padding: 9px 14px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	color: var(--primary-soft);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.status-chip span {
	flex: 0 0 auto;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 0 18px var(--primary);
}

.status-chip.is-closed {
	border-color: rgba(230, 72, 79, .52);
	background: rgba(230, 72, 79, .12);
	color: #ff6b73;
}

.status-chip.is-closed span {
	background: var(--red);
	box-shadow: 0 0 16px var(--red), 0 0 30px rgba(230, 72, 79, .45);
}

.status-chip.is-open {
	border-color: rgba(120, 195, 74, .52);
	background: rgba(120, 195, 74, .13);
	color: #83df72;
}

.status-chip.is-open span {
	background: var(--open-green, #78c34a);
	box-shadow: 0 0 16px var(--open-green, #78c34a), 0 0 30px rgba(120, 195, 74, .45);
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	line-height: 1.06;
	text-transform: uppercase;
}

.modern-hero h1 {
	max-width: 850px;
	font-size: clamp(46px, 6.4vw, 82px);
	font-weight: 900;
	letter-spacing: 0;
}

.hero-script {
	margin: 10px 0 22px;
	color: var(--primary);
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	font-size: clamp(26px, 3.2vw, 44px);
	font-weight: 800;
	line-height: 1.08;
}

.hero-intro {
	max-width: 680px;
	margin: 0 0 26px;
	color: var(--muted);
	font-size: 19px;
}

.modern-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.modern-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px solid transparent;
	border-radius: 12px;
	padding: 14px 20px;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .04em;
	text-transform: uppercase;
	transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.modern-btn:hover,
.modern-btn:focus-visible {
	transform: translateY(-2px);
}

.modern-btn--primary {
	background: var(--primary);
	color: #2e1500;
}

.modern-btn--ghost,
.modern-btn--outline {
	border-color: var(--line);
	background: transparent;
	color: var(--text);
}

.modern-btn--ghost:hover,
.modern-btn--outline:hover {
	border-color: var(--primary);
}

.hours-pill {
	display: inline-flex;
	gap: 0;
	margin-top: 24px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	color: var(--muted);
	font-weight: 800;
}

.hours-pill span {
	padding: 12px 18px;
}

.hours-pill span:first-child {
	color: var(--red);
	border-right: 1px solid rgba(255, 255, 255, .14);
}

.hours-pill.is-open span:first-child {
	color: var(--teal-soft);
}

.modern-info {
	position: relative;
	z-index: 4;
	margin-top: -70px;
	padding-bottom: 28px;
}

.modern-info__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.bento-card,
.time-card,
.event-modern-card,
.visit-modern,
.trader-feature-modern,
.market-modern-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface-2);
	box-shadow: var(--shadow);
}

.bento-card {
	padding: 24px;
	transition: transform .25s ease, border-color .25s ease;
}

.bento-card:hover {
	transform: translateY(-4px);
	border-color: var(--primary);
}

.card-icon {
	display: block;
	margin-bottom: 18px;
	color: var(--primary);
	font-size: 30px;
}

.card-icon--svg svg {
	width: 34px;
	height: 34px;
}

.bento-card h3 {
	margin-bottom: 7px;
	font-size: 21px;
}

.bento-card p {
	margin: 0 0 10px;
	color: var(--muted);
}

.bento-card a,
.section-head a {
	color: var(--primary);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.modern-section {
	padding: 82px 0;
}

.modern-section--dark {
	background: var(--surface);
}

.section-head {
	margin-bottom: 38px;
}

.section-head--split {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 32px;
}

.section-head h2,
.story-modern h2 {
	font-size: clamp(34px, 4vw, 54px);
	font-weight: 900;
}

.section-head p {
	max-width: 620px;
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 17px;
}

.pet-note {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 16px;
	width: min(420px, 100%);
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--surface-2);
}

.pet-note__icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: rgba(247, 148, 50, .12);
	color: var(--primary);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
}

.pet-note__icon svg {
	width: 31px;
	height: 31px;
}

.pet-note strong {
	display: block;
	margin-bottom: 7px;
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	font-size: 18px;
	text-transform: uppercase;
}

.pet-note p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.hours-modern-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.time-card {
	padding: 28px;
	border-bottom: 4px solid var(--primary);
}

.time-card--teal {
	border-bottom-color: var(--teal);
}

.time-card--red {
	border-bottom-color: var(--red);
}

.time-card span {
	display: block;
	margin-bottom: 18px;
	color: var(--primary);
	font-size: 15px;
	font-weight: 900;
	text-transform: uppercase;
}

.time-card--teal span {
	color: var(--teal-soft);
}

.time-card--red span {
	color: var(--red);
}

.time-card strong {
	display: block;
	margin-bottom: 12px;
	color: var(--text);
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	font-size: clamp(24px, 2.5vw, 34px);
	line-height: 1.05;
}

.time-card p {
	margin: 0;
	color: var(--muted);
}

.gig-modern-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.image-card {
	position: relative;
	min-height: 420px;
	overflow: hidden;
	border-radius: 28px;
	background: var(--surface-2);
}

.image-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s ease;
}

.image-card:hover img {
	transform: scale(1.06);
}

.image-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, .86), transparent 62%);
}

.image-card div {
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 28px;
	color: #fff;
}

.image-card span,
.modern-tag {
	display: inline-flex;
	align-items: center;
	width: max-content;
	margin-bottom: 14px;
	border-radius: 999px;
	background: var(--primary);
	color: #2e1500;
	padding: 7px 10px;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.image-card h3 {
	font-size: 28px;
}

.image-card p {
	color: rgba(255, 255, 255, .78);
}

.guide-action {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.guide-modal__dialog {
	display: block;
	width: min(1080px, 100%);
}

.guide-modal__content {
	padding: clamp(28px, 5vw, 48px);
}

.guide-modal__content h2 {
	margin-bottom: 24px;
	font-size: clamp(32px, 4vw, 52px);
}

.guide-modal__posters {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.guide-modal__posters article {
	border: 1px solid var(--line);
	border-radius: 18px;
	background: var(--surface-2);
	padding: 18px;
}

.guide-modal__posters h3 {
	margin-bottom: 14px;
	color: var(--primary);
	font-size: 18px;
}

.guide-modal__posters img {
	width: 100%;
	max-height: 72vh;
	object-fit: contain;
	border-radius: 12px;
	background: #0f1210;
}

.market-modern-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.market-modern-card {
	overflow: hidden;
}

.market-modern-card img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-bottom: 4px solid var(--area-accent, var(--teal));
}

.market-modern-card div {
	padding: 24px;
}

.market-modern-card h3 {
	margin-bottom: 10px;
	font-size: 24px;
}

.market-modern-card p {
	margin: 0;
	color: var(--muted);
}

.story-modern {
	position: relative;
	overflow: hidden;
	border-block: 1px solid var(--line);
	background: var(--surface-2);
}

.story-modern::before {
	content: "BHM";
	position: absolute;
	right: -4vw;
	top: 16px;
	color: rgba(247, 148, 50, .05);
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	font-size: clamp(110px, 22vw, 260px);
	font-weight: 900;
	line-height: .8;
	pointer-events: none;
}

.story-modern__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
	gap: 58px;
	align-items: center;
}

.story-collage {
	position: relative;
	min-height: 520px;
}

.story-collage img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.story-collage__main {
	inset: 0 auto auto 0;
	width: 78% !important;
	height: 84% !important;
	border-radius: 32px;
}

.story-collage__small {
	right: 0;
	bottom: 0;
	width: 48% !important;
	height: 48% !important;
	border-radius: 24px;
}

.story-collage::after {
	content: "";
	position: absolute;
	left: 10%;
	bottom: 8%;
	width: 58%;
	height: 36%;
	border-radius: 999px;
	background: rgba(20, 161, 155, .16);
	filter: blur(40px);
}

.story-collage__badge {
	position: absolute;
	z-index: 2;
	right: 18%;
	top: 12%;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: center;
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 18px;
	background: rgba(17, 20, 16, .76);
	backdrop-filter: blur(12px);
	color: #fff;
}

.story-collage__badge strong {
	color: var(--primary);
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	font-size: 42px;
	line-height: .9;
}

.story-collage__badge span {
	font-size: 12px;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
}

.story-copy-modern {
	position: relative;
	z-index: 1;
}

.story-copy-modern h2 {
	max-width: 620px;
	margin-bottom: 24px;
}

.story-modern p {
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 19px;
}

.story-lead {
	color: var(--text) !important;
	font-size: clamp(22px, 2.2vw, 30px) !important;
	font-weight: 800;
	line-height: 1.32;
}

.event-modern-row {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	padding-bottom: 18px;
	scroll-snap-type: x mandatory;
}

.event-modern-card {
	position: relative;
	flex: 0 0 390px;
	overflow: hidden;
	scroll-snap-align: start;
}

.event-modern-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.event-date {
	position: absolute;
	top: 16px;
	left: 16px;
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border-radius: 14px;
	background: var(--primary);
	color: #2e1500;
	font-weight: 900;
	text-transform: uppercase;
}

.event-date strong {
	font-size: 24px;
	line-height: 1;
}

.event-date span {
	font-size: 11px;
	letter-spacing: .08em;
}

.event-modern-card__body {
	padding: 26px;
}

.event-modern-card h3 {
	margin-bottom: 10px;
	font-size: 24px;
}

.event-modern-card p {
	color: var(--muted);
}

.trader-visit-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	align-items: stretch;
}

.trader-feature-modern {
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
}

.trader-feature-modern > div {
	padding: 42px;
	align-self: center;
}

.trader-feature-modern h2 {
	margin-bottom: 18px;
	font-size: clamp(30px, 3vw, 46px);
}

.trader-feature-modern p,
.visit-modern p {
	color: var(--muted);
}

.trader-feature-modern img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
}

.visit-modern {
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
}

.visit-modern > div:first-child {
	padding: 42px;
}

.visit-modern h2 {
	margin-bottom: 22px;
	font-size: 42px;
}

.map {
	min-height: 320px;
	background: var(--surface-3);
}

.map iframe {
	width: 100%;
	height: 100%;
	min-height: 320px;
	border: 0;
	filter: saturate(.9);
}

.modern-modal {
	position: fixed;
	z-index: 200;
	inset: 0;
	display: none;
	padding: 30px;
}

.modern-modal:target,
.trader-modal.is-open {
	display: grid;
	place-items: center;
}

.modern-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .72);
	backdrop-filter: blur(12px);
}

.modern-modal__dialog {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(320px, .9fr) minmax(360px, 1.1fr);
	width: min(1040px, 100%);
	max-height: calc(100vh - 60px);
	overflow: auto;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: var(--surface);
	box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.modern-modal__close {
	position: absolute;
	z-index: 4;
	top: 18px;
	right: 18px;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--primary);
	color: #2e1500;
	font-size: 26px;
	font-weight: 900;
}

.modern-modal__image {
	min-height: 460px;
	background: var(--surface-3);
}

.modern-modal__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.modern-modal__copy {
	padding: 46px;
}

.modern-modal__copy h2 {
	margin-bottom: 18px;
	font-size: clamp(32px, 4vw, 52px);
}

.modern-modal__body,
.modern-modal__body p {
	color: var(--muted);
	font-size: 16px;
}

.guide-modal__dialog {
	display: block;
	width: min(1400px, calc(100vw - 56px));
	max-height: calc(100vh - 56px);
}

.guide-modal__posters {
	grid-template-columns: repeat(2, minmax(360px, 1fr));
	align-items: start;
}

.guide-modal__posters img {
	max-height: 78vh;
}

.modern-facts {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 8px 14px;
	margin: 22px 0;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--surface-2);
}

.modern-facts dt {
	color: var(--primary);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.modern-facts dd {
	margin: 0;
	color: var(--text);
}

.modern-kicker {
	color: var(--teal-soft);
	font-weight: 900;
	text-transform: uppercase;
}

.modern-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.modern-socials h3 {
	flex-basis: 100%;
	font-size: 20px;
}

.modern-socials a {
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 8px 12px;
	color: var(--primary);
	font-weight: 800;
}

.modern-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 24px;
}

.modern-gallery img {
	width: 100%;
	aspect-ratio: 1;
	border-radius: 14px;
	object-fit: cover;
}

.back-to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 90;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--primary);
	color: #211006;
	box-shadow: var(--shadow);
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	font-size: 22px;
	font-weight: 950;
	line-height: 1;
	transition: transform .2s ease, background .2s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
	transform: translateY(-3px);
	background: var(--primary-soft);
}

.default-page {
	min-height: 100vh;
	padding: 150px 0 86px;
	background:
		radial-gradient(circle at 82% 6%, rgba(247, 148, 50, .12), transparent 30%),
		linear-gradient(180deg, rgba(20, 161, 155, .08), transparent 36%),
		var(--bg);
}

.default-entry {
	max-width: 980px;
	margin: 0 auto;
	padding: clamp(28px, 5vw, 58px);
	border: 1px solid var(--line);
	border-radius: 24px;
	background: color-mix(in srgb, var(--surface) 94%, transparent);
	box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

.default-entry__header {
	margin-bottom: 34px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--line);
}

.default-entry__back {
	display: inline-flex;
	margin-bottom: 18px;
	color: var(--primary);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.default-entry h1 {
	max-width: 760px;
	margin: 0;
	color: var(--text);
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	font-size: clamp(42px, 7vw, 78px);
	font-weight: 950;
	line-height: .95;
	text-transform: uppercase;
}

.entry-content {
	color: var(--muted);
	font-size: 18px;
}

.entry-content a {
	color: var(--primary);
	font-weight: 800;
}

.entry-content .forminator-ui {
	margin-top: 8px;
}

.entry-content .forminator-ui.forminator-design--default .forminator-label {
	color: var(--text);
	font-weight: 900;
}

.entry-content .forminator-ui.forminator-design--default .forminator-input,
.entry-content .forminator-ui.forminator-design--default .forminator-textarea,
.entry-content .forminator-ui.forminator-design--default .forminator-select2 + .forminator-select .selection .select2-selection--single[role="combobox"] {
	border-color: var(--line);
	border-radius: 12px;
	background: var(--surface-2);
	color: var(--text);
}

.entry-content .forminator-ui.forminator-design--default .forminator-button-submit {
	border-radius: 999px;
	background: var(--primary);
	color: #211006;
	font-weight: 950;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.site-footer {
	padding: 76px 0 42px;
	border-top: 1px solid var(--line);
	background: var(--surface);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr repeat(3, 1fr);
	gap: 28px;
}

.footer-logo {
	margin-bottom: 10px;
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	font-size: 30px;
	font-weight: 900;
	text-transform: uppercase;
	line-height: .95;
}

.footer-tagline,
.site-footer h4 {
	color: var(--primary);
	font-weight: 900;
	text-transform: uppercase;
}

.site-footer p,
.site-footer a {
	display: block;
	color: var(--muted);
}

.site-footer a:hover {
	color: var(--primary);
}

.newsletter {
	display: grid;
	gap: 10px;
}

.newsletter input {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--surface-2);
	color: var(--text);
	padding: 13px 14px;
}

.newsletter button {
	border: 0;
	border-radius: 10px;
	background: var(--primary);
	color: #2e1500;
	padding: 13px 14px;
	font-weight: 900;
	text-transform: uppercase;
}

.footer-menu {
	margin-top: 42px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.footer-menu .menu {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (max-width: 980px) {
	.admin-bar .topbar {
		top: 46px;
	}

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

	.navlinks {
		position: absolute;
		top: calc(100% - 1px);
		left: 24px;
		right: 24px;
		display: none;
		padding: 18px;
		border: 1px solid var(--line);
		border-radius: 0 0 18px 18px;
		background: var(--surface);
		box-shadow: var(--shadow);
	}

	.navlinks.is-open {
		display: block;
	}

	.navlinks .menu {
		display: grid;
		gap: 14px;
	}

	.modern-info__grid,
	.market-modern-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.section-head--split,
	.story-modern__grid,
	.trader-visit-grid {
		grid-template-columns: 1fr;
		display: grid;
		align-items: start;
	}

	.story-collage {
		min-height: 440px;
	}

	.hours-modern-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gig-modern-grid {
		grid-template-columns: 1fr;
	}

	.time-card {
		padding: 20px;
	}

	.trader-feature-modern,
	.modern-modal__dialog {
		grid-template-columns: 1fr;
	}

	.guide-modal__dialog {
		width: min(1080px, calc(100vw - 48px));
	}

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

@media (max-width: 640px) {
	.container {
		width: min(100% - 32px, 1280px);
	}

	.modern-hero {
		min-height: auto;
		padding: 118px 0 30px;
		align-items: flex-start;
	}

	.modern-hero__shade {
		background:
			linear-gradient(180deg, rgba(17, 20, 16, .9), rgba(17, 20, 16, .58)),
			linear-gradient(0deg, var(--bg), transparent 18%);
	}

	.logo img,
	.custom-logo {
		max-width: 170px;
	}

	.nav {
		min-height: 76px;
	}

	.status-chip {
		max-width: 100%;
		margin-bottom: 16px;
		padding: 8px 13px;
		font-size: 11px;
		letter-spacing: .07em;
	}

	.modern-hero h1 {
		font-size: clamp(38px, 11vw, 50px);
		line-height: .95;
	}

	.hero-script {
		margin: 10px 0 14px;
		font-size: clamp(28px, 9vw, 38px);
	}

	.hero-intro {
		margin-bottom: 18px;
		font-size: 18px;
		line-height: 1.45;
	}

	.modern-actions {
		gap: 10px;
	}

	.modern-actions .modern-btn {
		min-height: 54px;
		padding: 12px 16px;
	}

	.modern-actions,
	.hours-pill {
		width: 100%;
	}

	.modern-btn {
		width: 100%;
	}

	.hours-pill {
		margin-top: 14px;
		display: grid;
		grid-template-columns: minmax(0, .9fr) minmax(0, 1.25fr);
		border-radius: 18px;
		font-size: 15px;
	}

	.hours-pill span {
		display: flex;
		align-items: center;
		min-height: 48px;
		padding: 10px 12px;
	}

	.hours-pill span:first-child {
		justify-content: center;
	}

	.modern-info {
		margin-top: 0;
		padding: 16px 0 8px;
	}

	.modern-info__grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

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

	.bento-card {
		min-height: 156px;
		padding: 16px;
		border-radius: 14px;
	}

	.card-icon {
		margin-bottom: 14px;
		font-size: 24px;
	}

	.card-icon--svg svg {
		width: 26px;
		height: 26px;
	}

	.bento-card h3 {
		font-size: clamp(16px, 4.7vw, 19px);
		line-height: 1.05;
	}

	.bento-card p {
		margin-bottom: 8px;
		font-size: 14px;
		line-height: 1.35;
	}

	.bento-card a {
		font-size: 10px;
		letter-spacing: .05em;
	}

	.market-modern-grid {
		grid-template-columns: 1fr;
	}

	.story-collage {
		min-height: 360px;
	}

	.story-collage__main {
		width: 86% !important;
		height: 78% !important;
	}

	.story-collage__small {
		width: 58% !important;
		height: 46% !important;
	}

	.story-collage__badge {
		right: 8%;
		top: 8%;
	}

	.modern-section {
		padding: 46px 0;
	}

	#hours.modern-section {
		padding-top: 42px;
		padding-bottom: 42px;
	}

	#hours .section-head {
		margin-bottom: 20px;
	}

	#hours .section-head h2 {
		font-size: clamp(34px, 11vw, 46px);
	}

	#hours .section-head p {
		margin-top: 10px;
		font-size: 14px;
		line-height: 1.45;
	}

	.pet-note {
		grid-template-columns: 42px 1fr;
		gap: 12px;
		padding: 13px;
		border-radius: 14px;
	}

	.pet-note__icon {
		width: 42px;
		height: 42px;
	}

	.pet-note__icon svg {
		width: 24px;
		height: 24px;
	}

	.pet-note strong {
		margin-bottom: 4px;
		font-size: 14px;
	}

	.pet-note p {
		font-size: 12px;
		line-height: 1.35;
	}

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

	.time-card {
		min-height: 150px;
		padding: 14px 10px;
		border-radius: 14px;
		border-bottom-width: 3px;
	}

	.time-card span {
		min-height: 30px;
		margin-bottom: 10px;
		font-size: 10px;
		line-height: 1.15;
	}

	.time-card strong {
		margin-bottom: 8px;
		font-size: clamp(17px, 5vw, 20px);
		line-height: 1.08;
	}

	.time-card p {
		font-size: 11px;
		line-height: 1.3;
	}

	.default-page {
		padding: 120px 0 58px;
	}

	.event-modern-card {
		flex-basis: 86vw;
	}

	.trader-feature-modern > div,
	.visit-modern > div:first-child,
	.modern-modal__copy {
		padding: 28px;
	}

	.modern-modal {
		padding: 14px;
	}

	.modern-modal__dialog {
		max-height: calc(100vh - 28px);
	}

	.guide-modal__posters {
		grid-template-columns: 1fr;
	}

	.modern-modal__image {
		min-height: 280px;
	}

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

	.back-to-top {
		right: 14px;
		bottom: 14px;
		width: 44px;
		height: 44px;
		font-size: 20px;
	}
}
