/* Hide default theme header/footer so custom chrome takes over */
body #masthead,
.site-header,
header#masthead,
#colophon,
footer#colophon,
.site-footer,
.kadence-footer-html {
	display: none !important;
}

.cnbf-wrap {
	width: min(1200px, calc(100% - 2rem));
	margin: 0 auto;
}

.cnbf-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	height: 76px;
	display: flex;
	align-items: center;
	background: #fff4ef;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(217, 61, 36, 0.14);
	box-shadow: 0 4px 24px rgba(68, 28, 16, 0.08);
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	color: #3a1f14;
	transition: box-shadow 0.25s ease;
}

.cnbf-header.is-scrolled {
	background: #ffefe8;
	box-shadow: 0 8px 28px rgba(68, 28, 16, 0.12);
}

.cnbf-header__inner {
	width: min(1200px, calc(100% - 2rem));
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	position: relative;
}

.cnbf-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none !important;
	color: #12100e !important;
	z-index: 2;
}

.cnbf-logo__img {
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

.cnbf-logo__img img {
	height: 60px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
	display: block;
}

.cnbf-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	border: 1px solid rgba(26, 20, 16, 0.12);
	background: #fff;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 0;
	z-index: 2;
}

.cnbf-toggle__bar {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: #12100e;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.cnbf-toggle.is-open .cnbf-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.cnbf-toggle.is-open .cnbf-toggle__bar:nth-child(2) {
	opacity: 0;
}

.cnbf-toggle.is-open .cnbf-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.cnbf-nav {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.cnbf-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.5rem 0.95rem;
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 600;
	color: #5c2e1f !important;
	border: 1px solid transparent;
	text-decoration: none !important;
	background: transparent !important;
	transition: all 0.25s ease;
	white-space: nowrap;
}

.cnbf-nav__icon {
	width: 16px;
	height: 16px;
	display: inline-grid;
	place-items: center;
	flex-shrink: 0;
	color: #5c2e1f;
}

.cnbf-nav__icon svg {
	width: 16px;
	height: 16px;
}

.cnbf-nav__link.is-active,
.cnbf-nav__link:hover,
.cnbf-nav__link:focus {
	color: #c43d28 !important;
	background: rgba(255, 255, 255, 0.85) !important;
	border-color: rgba(217, 61, 36, 0.18);
}

.cnbf-nav__link.is-active .cnbf-nav__icon,
.cnbf-nav__link:hover .cnbf-nav__icon,
.cnbf-nav__link:focus .cnbf-nav__icon {
	color: #c43d28;
}

.cnbf-nav__link--pdf {
	background: rgba(217, 61, 36, 0.12) !important;
	border-color: rgba(217, 61, 36, 0.22);
	color: #b83322 !important;
}

.cnbf-nav__link--pdf .cnbf-nav__icon {
	color: #b83322;
}

.cnbf-nav__link--pdf:hover,
.cnbf-nav__link--pdf:focus {
	background: rgba(217, 61, 36, 0.2) !important;
	border-color: rgba(217, 61, 36, 0.32);
	color: #962618 !important;
}

body {
	padding-top: 76px !important;
}

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

.cnbf-footer {
	margin-top: 3rem;
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	color: #f4ece6;
	background: linear-gradient(160deg, #2a160d 0%, #1c0f08 100%);
	position: relative;
	overflow: hidden;
}

.cnbf-footer::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: linear-gradient(90deg, #d93d24, #c4244f, #7c8f5a);
}

.cnbf-footer__top {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 2.5rem;
	padding: 3.5rem 0 2.5rem;
}

.cnbf-footer__col--brand {
	padding-right: 1rem;
}

.cnbf-footer__logo {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none !important;
	margin-bottom: 1rem;
}

.cnbf-footer__logo img {
	height: 72px;
	width: auto;
	max-width: 260px;
	object-fit: contain;
}

.cnbf-footer__tagline {
	font-size: 0.92rem;
	line-height: 1.65;
	color: rgba(244, 236, 230, 0.68);
	max-width: 34ch;
	margin: 0 0 1.5rem;
}

.cnbf-footer__social {
	display: flex;
	gap: 0.65rem;
}

.cnbf-social {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(244, 236, 230, 0.08);
	border: 1px solid rgba(244, 236, 230, 0.16);
	color: #f4ece6 !important;
	text-decoration: none !important;
	transition: all 0.25s ease;
}

.cnbf-social svg {
	width: 18px;
	height: 18px;
}

.cnbf-social:hover,
.cnbf-social:focus {
	background: linear-gradient(135deg, #d93d24, #c4244f);
	border-color: transparent;
	transform: translateY(-2px);
}

.cnbf-footer__heading {
	font-family: "Syne", sans-serif;
	font-weight: 700;
	font-size: 0.98rem;
	color: #fff;
	margin: 0 0 1.25rem;
	letter-spacing: 0.01em;
}

.cnbf-footer__nav {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.cnbf-footer__nav a {
	color: rgba(244, 236, 230, 0.7) !important;
	text-decoration: none !important;
	font-size: 0.9rem;
	font-weight: 500;
	width: fit-content;
	transition: color 0.2s ease, transform 0.2s ease;
}

.cnbf-footer__nav a:hover {
	color: #fff !important;
	transform: translateX(3px);
}

.cnbf-footer__hours {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.cnbf-footer__hours li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: 0.86rem;
	padding: 0.4rem 0.6rem;
	border-radius: 8px;
	color: rgba(244, 236, 230, 0.7);
}

.cnbf-footer__hours li.is-today {
	background: rgba(124, 143, 90, 0.18);
	color: #fff;
}

.cnbf-footer__hours-day {
	font-weight: 600;
}

.cnbf-footer__hours li.is-today .cnbf-footer__hours-day::after {
	content: "\2022 Today";
	margin-left: 0.4rem;
	font-weight: 700;
	color: #9fb37a;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.cnbf-footer__hours-time {
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.cnbf-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem 1.5rem;
	padding: 1.5rem 0 2rem;
	border-top: 1px solid rgba(244, 236, 230, 0.12);
}

.cnbf-footer__copy {
	font-size: 0.82rem;
	color: rgba(244, 236, 230, 0.6);
	margin: 0;
}

.cnbf-footer__note {
	margin: 0;
	max-width: 46ch;
	font-size: 0.74rem;
	line-height: 1.6;
	color: rgba(244, 236, 230, 0.42);
}

@media (max-width: 900px) {
	.cnbf-footer__top {
		grid-template-columns: 1fr 1fr;
		gap: 2rem 1.5rem;
	}

	.cnbf-footer__col--brand {
		grid-column: 1 / -1;
		padding-right: 0;
	}

	.cnbf-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
}

@media (max-width: 560px) {
	.cnbf-footer__top {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.cnbf-toggle {
		display: inline-flex;
	}

	.cnbf-nav {
		position: absolute;
		top: calc(100% + 0.65rem);
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0.35rem;
		padding: 0.85rem;
		border-radius: 18px;
		background: #fff4ef;
		border: 1px solid rgba(26, 20, 16, 0.12);
		box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
	}

	.cnbf-nav.is-open {
		display: flex;
	}

	.cnbf-nav__link {
		justify-content: flex-start;
		width: 100%;
		border-radius: 14px;
		padding: 0.85rem 1rem;
	}
	
	
	/* =========================================================
   CHIPOTLE FOOTER - NUTRITION INFORMATION SECTION
   ========================================================= */

.cnbf-footer__about {
	width: 100% !important;
	max-width: 900px !important;
	margin: 0 auto !important;
	padding: 32px 20px !important;
	border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
	box-sizing: border-box !important;
	text-align: left !important;
}

.cnbf-footer__about-text {
	margin: 0 0 16px 0 !important;
	padding: 0 !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1.7 !important;
	color: rgba(255, 255, 255, 0.72) !important;
	text-align: left !important;
}

.cnbf-footer__about-text:last-child {
	margin-bottom: 0 !important;
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 769px) {

	.cnbf-footer__about {
		padding-top: 34px !important;
		padding-right: 20px !important;
		padding-bottom: 34px !important;
		padding-left: 20px !important;
	}

	.cnbf-footer__about-text {
		font-size: 14px !important;
		line-height: 1.75 !important;
	}

}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 481px) and (max-width: 768px) {

	.cnbf-footer__about {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 auto !important;
		padding: 28px 24px !important;
		box-sizing: border-box !important;
	}

	.cnbf-footer__about-text {
		font-size: 14px !important;
		line-height: 1.7 !important;
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {

	.cnbf-footer__about {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 auto !important;
		padding: 24px 18px !important;
		box-sizing: border-box !important;
	}

	.cnbf-footer__about-text {
		margin: 0 0 14px 0 !important;
		padding: 0 !important;
		font-size: 13px !important;
		line-height: 1.7 !important;
		text-align: left !important;
	}

	.cnbf-footer__about-text:last-child {
		margin-bottom: 0 !important;
	}

}


/* =========================================================
   VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 360px) {

	.cnbf-footer__about {
		padding: 20px 15px !important;
	}

	.cnbf-footer__about-text {
		font-size: 12.5px !important;
		line-height: 1.65 !important;
	}

}
	
}
