/* ── Mobile nav: fleet-standard full-screen sheet ───────────────────────────
   @generated by _infra/apply-mobile-nav.mjs from _templates/mobile-nav/mobile-nav.css.
   Change the template or the site's config in the script, never this copy.
   Pattern: _templates/PATTERNS/mobile-menu.html. Markup + behavior: partials/header.html.
   Every selector is scoped to #mobileMenu / .mnav-burger so the old theme's
   generic rules (nav a, .header a, *{outline:none}) can't reach in. */

/* Hamburger → X. Keeps the theme's .menu-btn / .menu-line classes so the header's own
   positioning and bar colors (including scroll-state color changes) still apply. */
/* this site keeps its own hamburger size (it is the desktop navigation too); only the <button> chrome is reset */
.mnav-burger.menu-btn { padding: 0; border: 0; border-radius: 0; background: none; box-shadow: none; cursor: pointer; }
.mnav-burger.is-open .menu-line:nth-child(1) { transform: translateY(var(--mnav-x, 8px)) rotate(45deg) !important; }
.mnav-burger.is-open .menu-line:nth-child(2) { opacity: 0 !important; transform: scaleX(0) !important; }
.mnav-burger.is-open .menu-line:nth-child(3) { transform: translateY(calc(-1 * var(--mnav-x, 8px))) rotate(-45deg) !important; }

.mnav-burger:focus-visible,
#mobileMenu a:focus-visible,
#mobileMenu button:focus-visible { outline: 2px solid #ff6b70 !important; outline-offset: 3px; }
/* Bootstrap rings any focused button, including after a tap; keyboard focus keeps the ring above */
.mnav-burger:focus:not(:focus-visible),
#mobileMenu button:focus:not(:focus-visible) { outline: none; }

/* The sheet runs full-screen BEHIND the header bar (the bar is lifted above it while open),
   so a transparent header still reads correctly. Top padding is set from the bar at open time. */
#mobileMenu {
	position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 10000;
	overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
	margin: 0; padding: 96px 28px 56px; background: #202020;
	opacity: 0; transform: translateY(-8px);
	transition: opacity .25s ease, transform .3s cubic-bezier(.22, .61, .36, 1);
	text-align: left; -webkit-font-smoothing: antialiased;
}
#mobileMenu.is-open { opacity: 1; transform: none; }
#mobileMenu[hidden] { display: none; }
html.mnav-locked, html.mnav-locked body { overflow: hidden; }

#mobileMenu nav { display: block; margin: 0; padding: 0; background: none; }

/* Top-level rows: links and accordion toggles share one look */
#mobileMenu .mnav-link,
#mobileMenu .mnav-toggle {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	width: 100%; min-height: 60px; padding: 14px 0; margin: 0;
	border: 0; border-bottom: 1px solid #3f3f3f; border-radius: 0; background: none; box-shadow: none;
	color: #ffffff; font-family: 'Archivo Black', 'Archivo', sans-serif; font-size: 20px; font-weight: 400;
	font-style: normal; line-height: 1.3; letter-spacing: .02em; text-align: left;
	text-transform: uppercase; text-decoration: none; cursor: pointer;
	transition: color .15s ease;
}
#mobileMenu .mnav-toggle[aria-expanded="true"] { border-bottom-color: transparent; }
#mobileMenu .mnav-chev { width: 18px; height: 18px; flex-shrink: 0; color: #ff6b70; transition: transform .2s ease; }
#mobileMenu .mnav-toggle[aria-expanded="true"] .mnav-chev { transform: rotate(180deg); }
#mobileMenu .mnav-ext { width: 14px; height: 14px; flex-shrink: 0; color: #d7d7d7; }

#mobileMenu .mnav-sub { margin: 0; padding: 0 0 16px 4px; border-bottom: 1px solid #3f3f3f; }
#mobileMenu .mnav-sub[hidden] { display: none; }
#mobileMenu .mnav-sub a {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 11px 0 11px 16px; margin: 0; border: 0; border-left: 2px solid #515151; border-radius: 0; background: none;
	color: #d7d7d7; font-family: 'Archivo', sans-serif; font-size: 16px; font-weight: 400; font-style: normal;
	line-height: 1.4; letter-spacing: normal; text-transform: none; text-decoration: none;
	transition: color .15s ease;
}
#mobileMenu .mnav-sub a.mnav-overview { font-weight: 600; }

@media (hover: hover) {
	#mobileMenu .mnav-link:hover, #mobileMenu .mnav-toggle:hover, #mobileMenu .mnav-sub a:hover { color: #ff6b70; }
}

/* Current page (and the top-level entry that owns it) */
#mobileMenu a[aria-current="page"],
#mobileMenu .mnav-link.is-ancestor { color: #ff6b70; }
#mobileMenu .mnav-sub a[aria-current="page"] { border-left-color: #ff6b70; }

/* Calls to action */
#mobileMenu .mnav-ctas { display: flex; flex-direction: column; gap: 12px; margin: 32px 0 0; }
#mobileMenu .mnav-cta {
	display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 14px 20px; margin: 0;
	border: 1px solid #ed1c24; border-radius: 40px 0; background: transparent; box-shadow: none;
	color: #ffffff; font-family: 'Archivo Black', 'Archivo', sans-serif; font-size: 19px; font-weight: 700; font-style: normal;
	line-height: 1.3; letter-spacing: .02em; text-align: center; text-transform: uppercase; text-decoration: none;
	transition: opacity .15s ease;
}
#mobileMenu .mnav-cta--primary { background: #ed1c24; border-color: #ed1c24; color: #ffffff; }
#mobileMenu .mnav-cta:active { opacity: .85; }
@media (hover: hover) { #mobileMenu .mnav-cta:hover { opacity: .88; } }

#mobileMenu .mnav-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 28px; margin: 20px 0 0; }
#mobileMenu .mnav-meta a {
	display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0; margin: 0; border: 0; background: none;
	color: #e4e4e4; font-family: 'Archivo', sans-serif; font-size: 15px; font-weight: 400; letter-spacing: normal;
	text-transform: none; text-decoration: none;
}
#mobileMenu .mnav-meta svg { width: 16px; height: 16px; flex-shrink: 0; color: #ff6b70; }

#mobileMenu .mnav-sr {
	position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden;
	clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Tablet and up (and desktop, on sites whose only navigation is the hamburger): keep the
   menu a comfortable reading column instead of a full-width list */
@media (min-width: 700px) {
	#mobileMenu > nav, #mobileMenu > .mnav-ctas, #mobileMenu > .mnav-meta { max-width: 560px; margin-left: auto !important; margin-right: auto !important; }
}

@media (prefers-reduced-motion: reduce) {
	#mobileMenu, #mobileMenu .mnav-chev, .mnav-burger .menu-line { transition: none !important; }
}
