/* ==========================================================================
   Alloway Mockups - BOLD variant styles.

   Loaded ONLY on /bold/ via an in-body <link> in templates/page-bold.html, so
   it cascades AFTER theme.css and can override the shared base without editing
   theme.css, motion.js, or functions.php (the Foundation agent owns those).

   Direction (Jack, 2026-06-01):
   - Display face: Big Shoulders Display (industrial-American condensed).
   - Colour mood: alternating full-bleed slabs (dark / gold / light bands).
   - Signature moves: image mega-menu, Nelson-Green category grid, Lime-Sales
     scroll timeline, Bredal/Art's-Way spec tabs + video testimonials.

   Motion rule (Material + Impeccable): transform/opacity + standard easing only.
   No bounce/elastic, no animating layout properties, no glow, no gradient text.
   ========================================================================== */

:root {
	--bold-display: "Big Shoulders Display", "Roboto Condensed", system-ui, sans-serif;
	--bold-cond: "Roboto Condensed", system-ui, sans-serif;
	--bold-gold: var(--wp--preset--color--primary);
	--bold-gold-deep: var(--wp--preset--color--secondary);
	--bold-dark: var(--wp--preset--color--dark);
	--bold-ink: var(--wp--preset--color--contrast);
	--bold-radius: 12px;       /* Bold rounds corners (DESIGN.md) */
	--bold-radius-sm: 8px;
	--bold-ease: var(--alloway-ease, cubic-bezier(0.2, 0, 0, 1));
	--bold-line-dim: rgba(255, 255, 255, 0.14);
}

/* Anchor-jump clearance under the taller Bold header (overrides theme.css 88px). */
html { scroll-padding-top: 150px; }

/* Microtype marker: a tractor icon (CSS mask) instead of the dash. The per-band
   fill colour comes from the existing .bold-slab--* / promo / portal overrides
   below, which set only `background`, so the mask shape persists and recolours. */
.alloway-eyebrow::before {
	width: 1.85rem;
	height: 1.4rem;
	background-color: var(--wp--preset--color--accent);
	-webkit-mask: url("../img/tractor.png") center / contain no-repeat;
	mask: url("../img/tractor.png") center / contain no-repeat;
}

/* ---------- Display typography (overrides theme.json heading family) ---------- */
.variant-bold :is(h1, h2, h3),
.bold-header :is(h2, h3),
.alloway-footer-bold .alloway-wordmark,
.bold-display {
	font-family: var(--bold-display);
	font-weight: 800;
	letter-spacing: 0.005em;
}
/* Loud, caps section headings - Big Shoulders shines in caps. */
.variant-bold .bold-slab > * h2,
.variant-bold .bold-heading {
	font-weight: 900;
	font-size: clamp(2.1rem, 4.6vw, 3.4rem);
	line-height: 0.98;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	margin: 0 0 var(--wp--preset--spacing--30);
}
.variant-bold h3 { font-weight: 800; }

/* Body measure / readability stays Material-safe (Roboto). */
.variant-bold .bold-lead {
	font-size: var(--wp--preset--font-size--large);
	line-height: 1.55;
	max-width: 54ch;
	margin: 0 0 var(--wp--preset--spacing--40);
}
/* Reusable big display sub-heading (colour inherits from the slab band). */
.bold-bigh3 { font-family: var(--bold-display); font-weight: 900; text-transform: uppercase; font-size: clamp(1.7rem, 3.4vw, 2.4rem); line-height: 1; margin: 0 0 0.6rem; }
.bold-tl__note { text-align: center; color: #9d9a93; margin-top: 2rem; font-size: 0.85rem; }

/* ==========================================================================
   FULL-BLEED SLAB SYSTEM
   Each section is an alignfull constrained group; the band colour spans the
   viewport, content re-constrains to 1200px with mobile side padding.
   ========================================================================== */
.variant-bold { overflow-x: clip; }

.bold-slab {
	padding-block: clamp(3.75rem, 7.5vw, 7.5rem);
	padding-inline: clamp(1.1rem, 4vw, 2rem);
}
.bold-slab--dark    { background: var(--bold-dark); color: #e9e7e2; }
.bold-slab--gold    { background: var(--bold-gold); color: var(--bold-ink); }
.bold-slab--light   { background: var(--wp--preset--color--base); color: var(--bold-ink); }
.bold-slab--surface { background: var(--wp--preset--color--surface); color: var(--bold-ink); }

/* Heading + eyebrow colour per band */
.bold-slab--dark :is(h1, h2, h3, h4) { color: #fff; }
.bold-slab--dark .alloway-eyebrow { color: #fff; }
.bold-slab--dark .alloway-eyebrow::before { background: var(--bold-gold); }
.bold-slab--dark .bold-lead { color: #c9c6bf; }

.bold-slab--gold :is(h1, h2, h3, h4) { color: var(--bold-ink); }
.bold-slab--gold .alloway-eyebrow { color: var(--bold-ink); }
.bold-slab--gold .alloway-eyebrow::before { background: var(--bold-dark); }
.bold-slab--gold .bold-lead { color: #2f2906; }

.bold-slab--light .bold-lead,
.bold-slab--surface .bold-lead { color: var(--wp--preset--color--muted); }

/* Section header block (eyebrow + heading + intro) */
.bold-sechead { max-width: 64ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.bold-sechead--center { margin-inline: auto; text-align: center; }
.bold-sechead--center .alloway-eyebrow { justify-content: center; }

/* ---------- Bold buttons: rounded corners, same heights as base ---------- */
.variant-bold .wp-block-button__link,
.bold-btn {
	border-radius: var(--bold-radius);
	font-family: var(--bold-cond);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.variant-bold .is-style-outline .wp-block-button__link { padding: 12px 26px; }
/* Inline anchor-style "bold" CTA used in raw-HTML sections */
.bold-btn {
	display: inline-block;
	padding: 14px 28px;
	background: var(--bold-gold);
	color: var(--bold-ink) !important;
	text-decoration: none;
	transition: background var(--alloway-transition), transform var(--alloway-transition), box-shadow var(--alloway-transition);
}
.bold-btn:hover,
.bold-btn:focus-visible { background: var(--bold-gold-deep); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(19, 17, 17, 0.22); }
.bold-btn--ghost {
	background: transparent;
	border: 2px solid currentColor;
	color: inherit !important;
}
.bold-slab--dark .bold-btn--ghost:hover { background: #fff; color: var(--bold-ink) !important; border-color: #fff; }
.bold-slab--gold .bold-btn--ghost:hover { background: var(--bold-dark); color: #fff !important; border-color: var(--bold-dark); }
/* Dark-fill variant of the standard button (for use on the gold footer panel). */
.bold-btn--dark { background: var(--bold-dark); color: #fff !important; }
.bold-btn--dark:hover, .bold-btn--dark:focus-visible { background: #2a2624; }

/* ==========================================================================
   HERO (refine the existing gold-duotone vhero-b)
   ========================================================================== */
.variant-bold .vhero h1 {
	font-family: var(--bold-display);
	font-weight: 900;
	font-size: clamp(2.9rem, 7.2vw, 5.6rem);
	line-height: 0.94;
	text-transform: uppercase;
	letter-spacing: 0.01em;
}
.variant-bold .vhero .alloway-hero__lead { font-size: var(--wp--preset--font-size--large); }
/* Brighter hero centre: lighten the inherited dark scrim pool (video filter untouched). */
.variant-bold .vhero-b::after {
	background: radial-gradient(ellipse 56% 64% at 50% 50%, rgba(19,17,17,0.22) 0%, rgba(19,17,17,0.08) 56%, rgba(19,17,17,0) 82%);
}
/* Show the tractor marker on the hero eyebrow too (theme hides the dash there). */
.variant-bold .vhero .alloway-eyebrow::before { display: block; }
/* Scroll cue under the hero CTAs */
.bold-scrollcue {
	display: inline-flex; align-items: center; gap: 0.6rem;
	margin-top: var(--wp--preset--spacing--40);
	font-family: var(--bold-cond); text-transform: uppercase;
	letter-spacing: 0.16em; font-size: 0.72rem; color: #fff;
}
.bold-scrollcue__dot-wrap {
	position: relative; flex: none; display: inline-block;
	width: 18px; height: 28px; border: 2px solid rgba(255,255,255,0.7); border-radius: 12px;
}
.bold-scrollcue__dot {
	position: absolute; left: 50%; top: 6px; transform: translateX(-50%);
	width: 4px; height: 7px; border-radius: 2px; background: var(--bold-gold);
	animation: bold-scrollcue 1.6s var(--bold-ease) infinite;
}
@keyframes bold-scrollcue { 0%,100% { transform: translateX(-50%) translateY(0); opacity: 1; } 60% { transform: translateX(-50%) translateY(7px); opacity: 0.2; } }
@media (prefers-reduced-motion: reduce) { .bold-scrollcue__dot { animation: none; } }

/* ==========================================================================
   PROOF STRIP (GOLD) - big Big-Shoulders numerals, black on gold
   ========================================================================== */
.bold-proof__grid {
	display: grid; grid-template-columns: repeat(4, 1fr);
	gap: clamp(1.5rem, 3vw, 2.5rem);
}
.bold-proof__item { position: relative; padding-left: clamp(1rem, 2vw, 1.6rem); }
.bold-proof__item + .bold-proof__item::before {
	content: ""; position: absolute; left: 0; top: 0.25rem; bottom: 0.25rem;
	width: 3px; background: var(--bold-dark);
}
.bold-proof__num {
	font-family: var(--bold-display); font-weight: 900;
	font-size: clamp(3rem, 7vw, 5rem); line-height: 0.85;
	color: var(--bold-ink); margin: 0;
}
.bold-proof__label {
	margin: 0.6rem 0 0; color: #2f2906; max-width: 22ch;
	font-size: 0.95rem; line-height: 1.4;
}
@media (max-width: 905px) {
	.bold-proof__grid { grid-template-columns: repeat(2, 1fr); row-gap: clamp(1.75rem, 5vw, 2.5rem); }
	/* No divider on the row-leading (left) item once reflowed to 2 columns. */
	.bold-proof__item:nth-child(odd)::before { display: none; }
}

/* ==========================================================================
   CATEGORY GRID (Nelson Green) - LIGHT band, big tiles, hover zoom
   ========================================================================== */
.bold-cats {
	display: grid; grid-template-columns: repeat(6, 1fr);
	gap: clamp(0.9rem, 1.8vw, 1.5rem);
}
/* Five tiles across two visual rows: 3 + 2, the pair wider (gallery rhythm). */
.bold-cat { grid-column: span 2; }
.bold-cat:nth-child(4),
.bold-cat:nth-child(5) { grid-column: span 3; }

.bold-cat {
	position: relative; display: block; overflow: hidden;
	border-radius: var(--bold-radius);
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	text-decoration: none; color: var(--bold-ink);
	aspect-ratio: 4 / 3;
	transition: transform var(--alloway-transition), box-shadow var(--alloway-transition);
}
.bold-cat:hover,
.bold-cat:focus-visible { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(19, 17, 17, 0.16); }
.bold-cat__img {
	position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
	padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2.5rem) clamp(3.5rem, 7vw, 5rem);
}
.bold-cat__img img {
	max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
	transition: transform 360ms var(--bold-ease);
}
.bold-cat:hover .bold-cat__img img { transform: scale(1.06); }
.bold-cat__bar {
	position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	padding: clamp(0.9rem, 2vw, 1.25rem) clamp(1.1rem, 2.4vw, 1.6rem);
	background: linear-gradient(0deg, rgba(19,17,17,0.92), rgba(19,17,17,0));
}
.bold-cat__name {
	font-family: var(--bold-display); font-weight: 800; text-transform: uppercase;
	font-size: clamp(1.15rem, 2.2vw, 1.6rem); line-height: 1; color: #fff; margin: 0;
}
.bold-cat__go {
	flex: none; width: 34px; height: 34px; border-radius: 50%;
	background: var(--bold-gold); color: var(--bold-ink);
	display: grid; place-items: center;
	transition: transform var(--alloway-transition);
}
.bold-cat:hover .bold-cat__go { transform: translateX(3px); }
.bold-cat__go svg { width: 16px; height: 16px; }
.bold-cats__note { margin-top: var(--wp--preset--spacing--40); font-size: 0.85rem; color: var(--wp--preset--color--muted); }

@media (max-width: 905px) {
	/* Jack: two across on mobile, not three. */
	.bold-cats { grid-template-columns: repeat(2, 1fr); }
	.bold-cat,
	.bold-cat:nth-child(4),
	.bold-cat:nth-child(5) { grid-column: span 1; }
	.bold-cat:nth-child(5) { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}

/* ==========================================================================
   HERITAGE SCROLL TIMELINE (Lime Sales) - DARK band, giant stroked years
   ========================================================================== */
.bold-timeline { position: relative; margin-top: clamp(1.5rem, 4vw, 3rem); }
/* The spine */
.bold-timeline::before {
	content: ""; position: absolute; top: 0; bottom: 0;
	left: clamp(0.55rem, 2vw, 0.7rem); width: 2px; background: var(--bold-line-dim);
}
@media (min-width: 906px) { .bold-timeline::before { left: 50%; transform: translateX(-50%); } }

.bold-tl {
	position: relative; padding-left: clamp(2rem, 6vw, 2.75rem);
	padding-block: clamp(1.25rem, 3vw, 2.5rem);
}
.bold-tl__dot {
	position: absolute; left: clamp(0.55rem, 2vw, 0.7rem); top: clamp(1.75rem, 4vw, 3rem);
	width: 16px; height: 16px; border-radius: 50%;
	background: var(--bold-dark); border: 3px solid var(--bold-line-dim);
	transform: translateX(-50%); transition: border-color 360ms var(--bold-ease), background 360ms var(--bold-ease), transform 360ms var(--bold-ease);
}
.bold-tl.is-active .bold-tl__dot { background: var(--bold-gold); border-color: var(--bold-gold); transform: translateX(-50%) scale(1.15); }
.bold-tl__year {
	font-family: var(--bold-display); font-weight: 900; line-height: 0.95;
	font-size: clamp(3.5rem, 11vw, 7rem);
	color: transparent;
	-webkit-text-stroke: clamp(1.5px, 0.25vw, 2.5px) rgba(255, 229, 0, 0.5);
	margin: 0 0 0.7rem; letter-spacing: -0.01em;
	transition: color 420ms var(--bold-ease), -webkit-text-stroke-color 420ms var(--bold-ease);
}
.bold-tl.is-active .bold-tl__year { color: var(--bold-gold); -webkit-text-stroke-color: transparent; }
.bold-tl__title { font-family: var(--bold-display); font-weight: 800; text-transform: uppercase; font-size: 1.4rem; color: #fff; margin: 0 0 0.4rem; }
.bold-tl__body { color: #c9c6bf; max-width: 46ch; margin: 0; }
.bold-tl__ph {
	display: inline-block; margin-top: 0.4rem; font-family: var(--bold-cond);
	text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem;
	color: #8d8a83; border: 1px dashed rgba(255,255,255,0.25);
	border-radius: var(--bold-radius-sm); padding: 0.3rem 0.65rem;
}
/* Desktop: alternate sides of the centre spine */
@media (min-width: 906px) {
	.bold-tl { width: 50%; padding-left: 0; }
	.bold-tl--l { left: 0; padding-right: clamp(2.5rem, 5vw, 4rem); text-align: right; }
	.bold-tl--r { left: 50%; padding-left: clamp(2.5rem, 5vw, 4rem); }
	.bold-tl--l .bold-tl__dot { left: auto; right: 0; transform: translateX(50%); }
	.bold-tl.is-active.bold-tl--l .bold-tl__dot { transform: translateX(50%) scale(1.15); }
	.bold-tl--l .bold-tl__body { margin-left: auto; }
	.bold-tl--r .bold-tl__dot { left: 0; }
}

/* ==========================================================================
   FEATURED EQUIPMENT + SPEC TABS (Bredal / Art's Way) - LIGHT band
   ========================================================================== */
.bold-feature { display: grid; gap: clamp(2rem, 5vw, 4rem); }
.bold-feature + .bold-feature { margin-top: clamp(2.5rem, 6vw, 5rem); padding-top: clamp(2.5rem, 6vw, 5rem); border-top: 1px solid var(--wp--preset--color--border); }
@media (min-width: 906px) {
	.bold-feature { grid-template-columns: 1fr 1fr; align-items: center; }
	.bold-feature--rev .bold-feature__media { order: 2; }
}
.bold-feature__media {
	background: var(--wp--preset--color--surface); border-radius: var(--bold-radius);
	aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center;
	padding: clamp(1.5rem, 4vw, 3rem); overflow: hidden;
	border: 1px solid var(--wp--preset--color--border);
}
.bold-feature__media img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.bold-feature__tag { font-family: var(--bold-cond); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; font-weight: 700; color: var(--wp--preset--color--muted); margin: 0 0 0.4rem; }
.bold-feature__name { font-family: var(--bold-display); font-weight: 900; text-transform: uppercase; font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 0.98; margin: 0 0 0.6rem; }
.bold-feature__lead { color: var(--wp--preset--color--muted); margin: 0 0 var(--wp--preset--spacing--30); max-width: 48ch; }

/* Tabs */
.bold-tabs__list { display: flex; gap: 0.4rem; margin-bottom: var(--wp--preset--spacing--30); flex-wrap: wrap; }
.bold-tab {
	appearance: none; border: 0; background: transparent; cursor: pointer;
	font-family: var(--bold-cond); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
	font-size: 0.82rem; color: var(--wp--preset--color--muted);
	padding: 0.6rem 1.05rem;
	transition: color var(--alloway-transition), background var(--alloway-transition);
}
.bold-tab:hover { color: var(--bold-ink); }
/* Selected tab = solid black rectangle, white text (Jack). */
.bold-tab[aria-selected="true"] { background: var(--bold-dark); color: #fff; }
.bold-tab:focus-visible { outline: 2px solid var(--bold-gold); outline-offset: 2px; }
.bold-tabpanel[hidden] { display: none; }
.bold-tabpanel p { margin: 0 0 0.6rem; color: var(--wp--preset--color--muted); }
.bold-tabpanel ul { margin: 0; padding: 0; list-style: none; }
.bold-tabpanel li { padding: 0.5rem 0; border-bottom: 1px solid var(--wp--preset--color--border); display: flex; gap: 0.75rem; align-items: baseline; }
.bold-tabpanel li::before { content: ""; flex: none; width: 0.55rem; height: 0.55rem; background: var(--bold-gold); border-radius: 2px; transform: translateY(0.1rem); }
/* Spec table */
.bold-spec { width: 100%; border-collapse: collapse; }
.bold-spec th, .bold-spec td { text-align: left; padding: 0.7rem 0.5rem; border-bottom: 1px solid var(--wp--preset--color--border); font-size: 0.95rem; }
.bold-spec th { font-family: var(--bold-cond); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.74rem; color: var(--wp--preset--color--muted); font-weight: 700; width: 42%; }
.bold-spec td { color: var(--bold-ink); }
.bold-spec .bold-tbd { color: var(--wp--preset--color--muted); font-style: italic; }
.bold-feature__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: var(--wp--preset--spacing--40); }

/* ==========================================================================
   VIDEO TESTIMONIALS (Art's Way) - DARK band, YouTube facades
   ========================================================================== */
.bold-vids { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
@media (min-width: 906px) { .bold-vids { grid-template-columns: 1.7fr 1fr; align-items: stretch; } }
.bold-vids__main { display: flex; flex-direction: column; min-width: 0; }
.bold-vids__main .bold-video { aspect-ratio: 16 / 9; }
/* Right rail: a vertical, scroll-snapping slider of video thumbnails. */
.bold-vids__rail {
	display: flex; flex-direction: column; gap: 0.6rem; min-height: 0;
	overflow-y: auto; scroll-snap-type: y proximity; padding-right: 0.25rem;
	scrollbar-width: thin; scrollbar-color: rgba(255,229,0,0.5) transparent;
}
@media (min-width: 906px) { .bold-vids__rail { max-height: 100%; } }
.bold-vids__rail::-webkit-scrollbar { width: 6px; }
.bold-vids__rail::-webkit-scrollbar-thumb { background: rgba(255,229,0,0.5); border-radius: 999px; }
.bold-vthumb {
	flex: none; display: grid; grid-template-columns: 104px 1fr; gap: 0.75rem; align-items: center;
	padding: 0.5rem; border-radius: var(--bold-radius-sm); cursor: pointer; text-align: left;
	background: transparent; border: 1px solid transparent; scroll-snap-align: start;
	transition: background var(--alloway-transition), border-color var(--alloway-transition);
}
.bold-vthumb:hover { background: rgba(255,255,255,0.05); }
.bold-vthumb.is-active { background: rgba(255,229,0,0.08); border-color: rgba(255,229,0,0.45); }
.bold-vthumb:focus-visible { outline: 2px solid var(--bold-gold); outline-offset: 2px; }
.bold-vthumb__thumb {
	position: relative; aspect-ratio: 16 / 9; border-radius: 6px; overflow: hidden;
	background: linear-gradient(180deg, rgba(19,17,17,0.1), rgba(19,17,17,0.55)), #211e1c;
	display: grid; place-items: center;
}
.bold-vthumb__thumb .bold-video__play { width: 32px; height: 32px; }
.bold-vthumb__thumb .bold-video__play::after { border-width: 6px 0 6px 10px; }
.bold-vthumb__name { font-family: var(--bold-display); font-weight: 800; text-transform: uppercase; font-size: 0.92rem; color: #fff; margin: 0; line-height: 1.05; }
.bold-vthumb__meta { color: #9d9a93; font-size: 0.72rem; margin: 0.15rem 0 0; }
@media (max-width: 905px) {
	.bold-vids__rail { flex-direction: row; overflow-x: auto; scroll-snap-type: x proximity; }
	.bold-vthumb { width: 240px; }
}
.bold-video {
	position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden;
	border-radius: var(--bold-radius); background: #1a1817; cursor: pointer;
	border: 1px solid rgba(255,255,255,0.08);
}
.bold-video__face {
	position: absolute; inset: 0; display: flex; flex-direction: column; gap: 0.9rem;
	align-items: center; justify-content: center; text-align: center; padding: 1.25rem;
	background: linear-gradient(180deg, rgba(19,17,17,0.25), rgba(19,17,17,0.7)), #211e1c;
	transition: background var(--alloway-transition);
}
.bold-video:hover .bold-video__face { background: linear-gradient(180deg, rgba(19,17,17,0.15), rgba(19,17,17,0.6)), #262220; }
.bold-video__play {
	position: relative; width: 68px; height: 68px; border-radius: 50%;
	background: var(--bold-gold); flex: none;
	transition: transform var(--alloway-transition);
}
.bold-video:hover .bold-video__play { transform: scale(1.07); }
.bold-video__play::after {
	content: ""; position: absolute; left: 54%; top: 50%; transform: translate(-50%, -50%);
	border-style: solid; border-width: 10px 0 10px 17px; border-color: transparent transparent transparent var(--bold-ink);
}
.bold-video__label { color: rgba(255,255,255,0.85); font-family: var(--bold-cond); text-transform: uppercase; letter-spacing: 0.07em; font-size: 0.78rem; max-width: 26ch; }
.bold-video__ph { color: rgba(255,255,255,0.5); font-family: var(--bold-cond); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.66rem; }
.bold-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.bold-video__cap { margin: 0.7rem 0 0; }
.bold-video__name { font-family: var(--bold-display); font-weight: 800; text-transform: uppercase; color: #fff; font-size: 1.05rem; margin: 0; }
.bold-video__meta { color: #9d9a93; font-size: 0.85rem; margin: 0.1rem 0 0; }

/* ==========================================================================
   DEALER NETWORK + MAP + PORTAL (GOLD band) - fixes locator + dead portal
   ========================================================================== */
.bold-dealers__grid { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: start; }
@media (min-width: 906px) { .bold-dealers__grid { grid-template-columns: 1fr 1fr; } }
.bold-map {
	aspect-ratio: 4 / 3; border-radius: var(--bold-radius); overflow: hidden;
	border: 3px solid var(--bold-ink); box-shadow: 0 18px 40px rgba(19, 17, 17, 0.22); background: #ddd;
}
.bold-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.15); }
.bold-zip { display: flex; max-width: 460px; margin-top: var(--wp--preset--spacing--30); border: 2px solid var(--bold-ink); border-radius: var(--bold-radius); overflow: hidden; background: #fff; }
.bold-zip input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 0.9rem 1rem; font-size: 1rem; font-family: inherit; color: var(--bold-ink); }
.bold-zip input:focus { outline: 2px solid var(--bold-dark); outline-offset: -2px; }
.bold-zip button { border: 0; cursor: pointer; background: var(--bold-dark); color: #fff; font-family: var(--bold-cond); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 0 1.5rem; white-space: nowrap; transition: background var(--alloway-transition); }
.bold-zip button:hover { background: #2a2624; }
.bold-dealers__note { font-size: 0.85rem; color: #4a3f0c; margin-top: 0.6rem; }
/* Portal login card on the gold band */
.bold-portal {
	background: var(--bold-dark); color: #fff; border-radius: var(--bold-radius);
	padding: clamp(1.5rem, 3.5vw, 2.5rem); box-shadow: 0 18px 40px rgba(19, 17, 17, 0.3);
}
.bold-portal__eyebrow { color: var(--wp--preset--color--on-dark) !important; }
.bold-portal__eyebrow::before { background: var(--bold-gold) !important; }
.bold-portal h3 { color: #fff; margin: 0 0 0.4rem; }
.bold-portal p { color: #c9c6bf; margin: 0 0 var(--wp--preset--spacing--30); }
.bold-portal label { display: block; margin-bottom: 0.85rem; font-family: var(--bold-cond); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.74rem; color: #c9c6bf; }
.bold-portal input { display: block; width: 100%; margin-top: 0.35rem; padding: 0.75rem 0.85rem; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--bold-radius-sm); font-size: 1rem; font-family: inherit; color: #fff; background: rgba(255,255,255,0.06); }
.bold-portal input::placeholder { color: #8d8a83; }
.bold-portal input:focus { outline: 2px solid var(--bold-gold); outline-offset: -1px; }
.bold-portal__submit { width: 100%; margin-top: 0.3rem; border: 0; cursor: pointer; padding: 0.85rem; border-radius: var(--bold-radius); background: var(--bold-gold); color: var(--bold-ink); font-family: var(--bold-cond); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; transition: background var(--alloway-transition); }
.bold-portal__submit:hover { background: var(--bold-gold-deep); }
.bold-portal__note { font-size: 0.78rem; color: #8d8a83; margin: 0.9rem 0 0; }
.bold-portal__note a { color: var(--wp--preset--color--on-dark); }

/* ==========================================================================
   MANUALS BY YEAR (Amity better-than) - LIGHT/SURFACE band, accordion
   ========================================================================== */
.bold-manuals__grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (min-width: 906px) { .bold-manuals__grid { grid-template-columns: 0.85fr 1.15fr; } }
.bold-acc { border-top: 2px solid var(--bold-ink); }
.bold-acc__item { border-bottom: 1px solid var(--wp--preset--color--border); }
.bold-acc__item > summary {
	list-style: none; cursor: pointer; position: relative; padding: 1.1rem 2.5rem 1.1rem 0;
	font-family: var(--bold-display); font-weight: 800; text-transform: uppercase; font-size: 1.3rem; color: var(--bold-ink);
}
.bold-acc__item > summary::-webkit-details-marker { display: none; }
.bold-acc__item > summary::after {
	content: ""; position: absolute; right: 0.3rem; top: 50%; margin-top: -6px; width: 11px; height: 11px;
	border-right: 2px solid var(--bold-ink); border-bottom: 2px solid var(--bold-ink);
	transform: rotate(45deg); transition: transform var(--alloway-transition);
}
.bold-acc__item[open] > summary::after { transform: rotate(-135deg); }
.bold-acc__body { padding: 0 0 1.2rem; display: grid; gap: 0.2rem; }
.bold-manual {
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	padding: 0.7rem 0.85rem; border-radius: var(--bold-radius-sm); text-decoration: none; color: var(--bold-ink);
	transition: background var(--alloway-transition);
}
.bold-manual:hover { background: var(--wp--preset--color--surface); }
.bold-manual__name { display: flex; align-items: center; gap: 0.7rem; }
.bold-manual__icon { flex: none; width: 30px; height: 30px; border-radius: 6px; background: var(--bold-gold); color: var(--bold-ink); display: grid; place-items: center; font-family: var(--bold-cond); font-weight: 700; font-size: 0.6rem; }
.bold-manual__dl { font-family: var(--bold-cond); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.72rem; color: var(--wp--preset--color--muted); }
.bold-manuals__note { font-size: 0.85rem; color: var(--wp--preset--color--muted); margin-top: var(--wp--preset--spacing--30); }

/* ==========================================================================
   NEWS / INSIGHTS (Murray Nankivell) - DARK band, filter + newsletter
   ========================================================================== */
.bold-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: var(--wp--preset--spacing--40); }
.bold-filter__btn {
	appearance: none; cursor: pointer; border: 1px solid rgba(255,255,255,0.22); background: transparent; color: #e9e7e2;
	font-family: var(--bold-cond); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.76rem;
	padding: 0.55rem 1rem; border-radius: 999px; transition: background var(--alloway-transition), color var(--alloway-transition), border-color var(--alloway-transition);
}
.bold-filter__btn:hover { border-color: #fff; color: #fff; }
.bold-filter__btn[aria-pressed="true"] { background: var(--bold-gold); border-color: var(--bold-gold); color: var(--bold-ink); }
.bold-filter__btn:focus-visible { outline: 2px solid var(--bold-gold); outline-offset: 2px; }

.bold-news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
@media (max-width: 905px) { .bold-news__grid { grid-template-columns: 1fr; } }
.bold-newscard {
	display: flex; flex-direction: column; text-decoration: none; color: #fff; overflow: hidden;
	background: #1c1a18; border: 1px solid rgba(255,255,255,0.08); border-radius: var(--bold-radius);
	transition: transform var(--alloway-transition), box-shadow var(--alloway-transition), border-color var(--alloway-transition);
}
.bold-newscard:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(0,0,0,0.4); border-color: rgba(255,229,0,0.3); }
.bold-newscard.is-hidden { display: none; }
.bold-newscard__thumb {
	aspect-ratio: 16 / 9; position: relative; display: flex; align-items: center; justify-content: center;
	background: repeating-linear-gradient(45deg, #232020, #232020 14px, #1d1b19 14px, #1d1b19 28px);
}
.bold-newscard__cat {
	position: absolute; left: 0.85rem; top: 0.85rem;
	font-family: var(--bold-cond); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.66rem;
	background: var(--bold-gold); color: var(--bold-ink); padding: 0.3rem 0.6rem; border-radius: 5px;
}
.bold-newscard__phlabel { font-family: var(--bold-cond); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem; color: #6f6c66; }
.bold-newscard__body { padding: clamp(1.1rem, 2.4vw, 1.5rem); display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.bold-newscard__meta { font-family: var(--bold-cond); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.7rem; color: #9d9a93; }
.bold-newscard__title { font-family: var(--bold-display); font-weight: 800; text-transform: uppercase; font-size: 1.3rem; line-height: 1.05; color: #fff; }
.bold-newscard__more { margin-top: auto; font-family: var(--bold-cond); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.76rem; color: var(--wp--preset--color--on-dark); padding-top: 0.3rem; }

/* Newsletter signup with topic checkboxes */
.bold-newsletter { margin-top: clamp(2.5rem, 6vw, 4.5rem); padding-top: clamp(2rem, 5vw, 3.5rem); border-top: 1px solid rgba(255,255,255,0.12); }
.bold-newsletter__grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (min-width: 906px) { .bold-newsletter__grid { grid-template-columns: 1fr 1.1fr; } }
.bold-topics { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0 0 var(--wp--preset--spacing--30); padding: 0; list-style: none; }
.bold-topic { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.9rem; border: 1px solid rgba(255,255,255,0.22); border-radius: 999px; cursor: pointer; font-size: 0.85rem; transition: border-color var(--alloway-transition), background var(--alloway-transition); }
.bold-topic:hover { border-color: #fff; }
.bold-topic input { accent-color: var(--bold-gold); width: 16px; height: 16px; }
.bold-signup { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.bold-signup input[type="email"] { flex: 1; min-width: 220px; padding: 0.85rem 1rem; border-radius: var(--bold-radius); border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.06); color: #fff; font-size: 1rem; }
.bold-signup input::placeholder { color: #8d8a83; }
.bold-signup input:focus { outline: 2px solid var(--bold-gold); outline-offset: -1px; }

/* ==========================================================================
   CLOSING CTA BAND (GOLD) - peak-end
   ========================================================================== */
.bold-cta { text-align: center; }
.variant-bold .bold-cta h2 { font-size: clamp(2.4rem, 6vw, 4.25rem) !important; max-width: 18ch; margin-inline: auto; text-align: center; }
.bold-cta__lead { color: #2f2906; max-width: 50ch; margin: 0 auto var(--wp--preset--spacing--40); font-size: var(--wp--preset--font-size--large); }
.bold-cta__row { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; align-items: center; }
.bold-cta__phone { font-family: var(--bold-cond); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--bold-ink); text-decoration: none; border-bottom: 2px solid var(--bold-dark); padding-bottom: 2px; }

/* ==========================================================================
   BOLD HEADER + IMAGE MEGA-MENU
   ========================================================================== */
.bold-header {
	position: sticky; top: 0; z-index: 200;
	background: var(--bold-dark); color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	transition: box-shadow var(--alloway-transition), background-color 240ms var(--bold-ease), border-color 240ms var(--bold-ease);
}
.bold-header.is-stuck { box-shadow: 0 6px 22px rgba(0,0,0,0.45); }
/* Inverted (light) header while a dark section is behind it: white bg, black logo/nav/login. */
.bold-header.is-light { background: #fff; border-bottom-color: var(--wp--preset--color--border); }
.bold-header.is-light.is-stuck { box-shadow: 0 4px 18px rgba(19,17,17,0.12); }
.bold-header.is-light .bold-nav__link,
.bold-header.is-light .bold-login { color: var(--bold-ink); }
.bold-header.is-light .bold-navtoggle__bar { background: var(--bold-ink); }
/* Underline hover/active goes black on the light header. */
.bold-header.is-light .bold-nav__link::after { background: var(--bold-ink); }
.bold-nav__link, .bold-login { transition: color var(--alloway-transition); }
.bold-header__logo .logo-dark { display: none; }
.bold-header.is-light .bold-header__logo .logo-white { display: none; }
.bold-header.is-light .bold-header__logo .logo-dark { display: block; }
/* On the light header the whole mega dropdown inverts: beige panel, white cards + promo,
   black text, black promo CTA. Desktop only (mobile mega is an accordion in the dark overlay). */
@media (min-width: 1241px) {
	.bold-header.is-light .bold-mega { background: var(--wp--preset--color--surface); border-bottom-color: var(--wp--preset--color--border); }
	.bold-header.is-light .bold-mega__cat { background: #fff; border-color: var(--wp--preset--color--border); color: var(--bold-ink); box-shadow: 0 4px 14px rgba(19,17,17,0.06); }
	.bold-header.is-light .bold-mega__catimg { background: var(--wp--preset--color--surface); }
	.bold-header.is-light .bold-mega__catname { color: var(--bold-ink); }
	.bold-header.is-light .bold-mega__catdesc { color: var(--bold-ink); }
	.bold-header.is-light .bold-mega__promo { background: #fff; border-color: var(--wp--preset--color--border); }
	.bold-header.is-light .bold-mega__promo .alloway-eyebrow,
	.bold-header.is-light .bold-mega__promo h3,
	.bold-header.is-light .bold-mega__promo p { color: var(--bold-ink); }
	.bold-header.is-light .bold-mega__promo .alloway-eyebrow::before { background: var(--bold-ink); }
	.bold-header.is-light .bold-mega__promo .bold-btn { background: var(--bold-dark); color: #fff !important; }
	.bold-header.is-light .bold-mega__promo .bold-btn:hover,
	.bold-header.is-light .bold-mega__promo .bold-btn:focus-visible { background: #2a2624; }
}
.bold-header__inner {
	max-width: 1300px; margin-inline: auto;
	display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
	padding: 0.85rem clamp(1.1rem, 4vw, 2rem);
}
.bold-header__logo { line-height: 0; flex: none; }
.bold-header__logo img { height: 100px; width: auto; display: block; }
.bold-nav { display: flex; align-items: center; gap: clamp(0.75rem, 1.8vw, 1.75rem); }
.bold-nav__list { display: flex; align-items: center; gap: clamp(0.5rem, 1.6vw, 1.5rem); list-style: none; margin: 0; padding: 0; }
.bold-nav__link {
	appearance: none; background: transparent; border: 0; cursor: pointer;
	display: inline-flex; align-items: center; gap: 0.35rem;
	color: #fff; text-decoration: none; font-family: var(--bold-cond); font-weight: 600; font-size: 1.5rem;
	padding: 0.5rem 0; position: relative;
}
.bold-nav__link::after {
	content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
	background: var(--bold-gold); transform: scaleX(0); transform-origin: left; transition: transform var(--alloway-transition);
}
.bold-nav__link:hover::after,
.bold-nav__link:focus-visible::after,
.bold-nav__item.is-open .bold-nav__link::after { transform: scaleX(1); }
.bold-nav__caret { width: 12px; height: 12px; transition: transform var(--alloway-transition); }
.bold-nav__item.is-open .bold-nav__caret { transform: rotate(180deg); }
.bold-header__actions { display: flex; align-items: center; gap: 0.9rem; }
.bold-login {
	color: var(--wp--preset--color--on-dark); text-decoration: none;
	font-family: var(--bold-cond); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.82rem;
	display: inline-flex; align-items: center; gap: 0.4rem;
}
.bold-login:hover { text-decoration: underline; }
.bold-login svg { width: 15px; height: 15px; }
.bold-header .bold-btn { padding: 10px 20px; font-size: 0.82rem; }

/* Mega-menu panel */
.bold-nav__item { position: static; }
.bold-mega {
	position: absolute; left: 0; right: 0; top: 100%;
	background: #1a1817; border-top: 3px solid var(--bold-gold); border-bottom: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 24px 40px rgba(0,0,0,0.45);
	opacity: 0; visibility: hidden; transform: translateY(-8px);
	transition: opacity 220ms var(--bold-ease), transform 220ms var(--bold-ease), visibility 0s linear 220ms;
	z-index: 199;
}
.bold-nav__item.is-open .bold-mega { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity 220ms var(--bold-ease), transform 220ms var(--bold-ease), visibility 0s; }
.bold-mega__inner {
	max-width: 1300px; margin-inline: auto; padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.1rem, 4vw, 2rem);
	display: grid; grid-template-columns: minmax(0, 2.6fr) minmax(0, 1fr); gap: clamp(1rem, 2vw, 1.5rem);
}
.bold-mega__cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.75rem, 1.6vw, 1.25rem); }
.bold-mega__cat {
	display: flex; flex-direction: column; text-decoration: none; color: #fff;
	background: #232020; border: 1px solid rgba(255,255,255,0.08); border-radius: var(--bold-radius); overflow: hidden;
	transition: transform var(--alloway-transition), border-color var(--alloway-transition);
}
.bold-mega__cat:hover,
.bold-mega__cat:focus-visible { transform: translateY(-3px); border-color: rgba(255,229,0,0.35); }
.bold-mega__catimg { aspect-ratio: 16 / 10; display: flex; align-items: center; justify-content: center; padding: 0.9rem; background: #2a2624; }
.bold-mega__catimg img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform var(--alloway-transition); }
.bold-mega__cat:hover .bold-mega__catimg img { transform: scale(1.05); }
.bold-mega__catname { font-family: var(--bold-display); font-weight: 800; text-transform: uppercase; font-size: 1.05rem; padding: 0.7rem 0.9rem 0.2rem; }
.bold-mega__catdesc { font-size: 0.8rem; color: #9d9a93; padding: 0 0.9rem 0.9rem; margin: 0; }
.bold-mega__promo {
	background: linear-gradient(180deg, #2a2624, #1a1817); border: 1px solid rgba(255,229,0,0.25); border-radius: var(--bold-radius);
	padding: clamp(1.1rem, 2vw, 1.5rem); display: flex; flex-direction: column; justify-content: center;
}
.bold-mega__promo .alloway-eyebrow { color: var(--wp--preset--color--on-dark); margin-bottom: 0.5rem; }
.bold-mega__promo .alloway-eyebrow::before { background: var(--bold-gold); }
.bold-mega__promo h3 { font-size: 1.4rem; color: #fff; margin: 0 0 0.4rem; }
.bold-mega__promo p { color: #c9c6bf; font-size: 0.9rem; margin: 0 0 var(--wp--preset--spacing--20); }

/* Hamburger toggle (hidden on desktop) */
.bold-navtoggle {
	display: none; position: relative; z-index: 1201; width: 44px; height: 44px; padding: 0; margin: 0;
	border: 0; background: transparent; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.bold-navtoggle:focus-visible { outline: 2px solid var(--bold-gold); outline-offset: 2px; }
.bold-navtoggle__bar { display: block; width: 26px; height: 2px; border-radius: 2px; background: #fff; transform-origin: center; transition: transform 240ms var(--bold-ease), opacity 160ms var(--bold-ease); }
.bold-header.is-open .bold-navtoggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.bold-header.is-open .bold-navtoggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0.3); }
.bold-header.is-open .bold-navtoggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
html.is-bold-nav-open, html.is-bold-nav-open body { overflow: hidden; }

/* ---------- Mobile / compact header (collapses at the 1240 Material breakpoint
   because the 3x logo + 1.5x nav need a wide row) ---------- */
@media (max-width: 1240px) {
	.bold-navtoggle { display: flex; }
	.bold-header__logo img { height: 48px; }
	html { scroll-padding-top: 92px; }
	/* Pin the logo + toggle to the viewport while the menu is open: the scroll-lock
	   (overflow:hidden) un-sticks the sticky header and would otherwise carry them
	   off-screen when the menu is opened while scrolled. They float white on the dark
	   overlay (z 1201 > the overlay's 1200). Also force them light over .is-light bands. */
	.bold-header.is-open .bold-header__logo { position: fixed; top: 0.85rem; left: clamp(1.1rem, 4vw, 2rem); z-index: 1201; }
	.bold-header.is-open .bold-navtoggle { position: fixed; top: 16px; right: clamp(1.1rem, 4vw, 2rem); }
	.bold-header.is-open .bold-navtoggle__bar { background: #fff; }
	.bold-header.is-open .bold-header__logo .logo-white { display: block; }
	.bold-header.is-open .bold-header__logo .logo-dark { display: none; }
	/* The overlay is always dark, so the nav links + login must read light even when the
	   header was inverted (.is-light) over a dark band, or they grey out into the overlay. */
	.bold-header.is-open .bold-nav__link { color: #fff; }
	.bold-header.is-open .bold-login { color: var(--wp--preset--color--on-dark); }
	.bold-nav {
		position: fixed; inset: 0; z-index: 1200; flex-direction: column; align-items: stretch; justify-content: flex-start;
		gap: 0; padding: calc(env(safe-area-inset-top) + 5.5rem) clamp(1.1rem, 6vw, 2rem) 2.5rem;
		background: var(--bold-dark); overflow-y: auto;
		opacity: 0; visibility: hidden; pointer-events: none;
		transition: opacity 240ms var(--bold-ease), visibility 0s linear 240ms;
	}
	.bold-header.is-open .bold-nav { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity 240ms var(--bold-ease), visibility 0s; }
	.bold-nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
	.bold-nav__item { border-bottom: 1px solid rgba(255,255,255,0.1); }
	.bold-nav__link { width: 100%; justify-content: space-between; font-family: var(--bold-display); font-weight: 800; text-transform: uppercase; font-size: 1.4rem; padding: 1rem 0; }
	.bold-nav__link::after { display: none; }
	/* Mega becomes an inline accordion under Equipment */
	.bold-mega {
		position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: transparent;
		display: grid; grid-template-rows: 0fr; overflow: hidden; transition: grid-template-rows 280ms var(--bold-ease);
	}
	.bold-nav__item.is-open .bold-mega { grid-template-rows: 1fr; }
	.bold-nav__item.is-open .bold-mega__inner { padding-bottom: 1rem; }
	.bold-mega__inner { min-height: 0; overflow: hidden; grid-template-columns: 1fr; padding: 0; gap: 0.75rem; }
	.bold-mega__cats { grid-template-columns: 1fr 1fr; }
	.bold-mega__promo { grid-column: 1 / -1; }
	.bold-header__actions { flex-direction: column; align-items: stretch; gap: 0.75rem; margin-top: 1.5rem; width: 100%; }
	.bold-header .bold-btn { display: block; text-align: center; padding: 14px 20px; font-size: 1rem; }
	.bold-login { justify-content: center; font-size: 1rem; padding: 0.5rem; }
	/* Staggered entrance */
	.bold-header.is-open .bold-nav > * { animation: bold-navin 360ms var(--bold-ease) both; }
	.bold-header.is-open .bold-nav > *:nth-child(2) { animation-delay: 60ms; }
	.bold-header.is-open .bold-nav > *:nth-child(3) { animation-delay: 110ms; }
}
@keyframes bold-navin { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   FOOTER (Bold treaded) - apply display face to wordmark
   ========================================================================== */
.alloway-footer-bold .alloway-wordmark { font-family: var(--bold-display); font-weight: 900; letter-spacing: 0.02em; }
/* Social widgets */
.bold-social { display: flex; gap: 0.6rem; margin-top: var(--wp--preset--spacing--30); }
.bold-social a {
	width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
	background: rgba(255,255,255,0.08); color: #fff;
	transition: background var(--alloway-transition), color var(--alloway-transition), transform var(--alloway-transition);
}
.bold-social a:hover,
.bold-social a:focus-visible { background: var(--bold-gold); color: var(--bold-ink); transform: translateY(-2px); }
.bold-social svg { width: 20px; height: 20px; }

/* ---------- Full footer: dark brand + big slanted gold panel that houses the nav ---------- */
.bold-foot__grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 2.4fr); gap: clamp(1.5rem, 2.5vw, 2.5rem); align-items: stretch; }
.bold-foot__brand { align-self: center; }
.bold-foot__logo { display: block; height: 46px; width: auto; margin: 0 0 1.1rem; }
.bold-foot__tagline { color: #c9c6bf; margin: 0 0 1.25rem; max-width: 32ch; font-size: 0.95rem; line-height: 1.5; }
/* Big slanted gold panel (retains the Bold angled signature; now holds the navigation). */
.bold-foot__panel {
	background: var(--bold-gold); color: var(--bold-ink); border-radius: var(--bold-radius);
	clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
	padding: clamp(1.75rem, 3vw, 2.75rem);
	padding-left: clamp(3rem, 11%, 6.5rem);
}
.bold-foot__panel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 2.5vw, 2.5rem); }
.bold-foot__h { font-family: var(--bold-cond); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; font-weight: 700; color: var(--bold-dark); margin: 0 0 0.9rem; }
.bold-foot__col { display: flex; flex-direction: column; }
.bold-foot__col a:not(.bold-btn) { color: #2f2906; text-decoration: none; font-size: 0.95rem; padding: 0.28rem 0; transition: color var(--alloway-transition); }
.bold-foot__col a:not(.bold-btn):hover, .bold-foot__col a:not(.bold-btn):focus-visible { color: var(--bold-ink); text-decoration: underline; }
/* Contact column inside the gold panel */
.bold-foot__cphone { margin: 0 0 0.55rem; }
.bold-foot__cphone a { font-family: var(--bold-display); font-weight: 900; font-size: clamp(1.2rem, 1.7vw, 1.5rem); color: var(--bold-ink); text-decoration: none; letter-spacing: 0.01em; white-space: nowrap; }
.bold-foot__cloc { margin: 0 0 0.55rem; color: var(--bold-ink); line-height: 1.5; font-size: 0.95rem; }
.bold-foot__directions { color: var(--bold-ink); font-weight: 700; }
.bold-foot__csupply { margin: 0 0 1rem; color: #5a4e0f; font-size: 0.85rem; }
.bold-foot__login { align-self: flex-start; margin-top: auto; font-size: 0.9rem; white-space: nowrap; }
/* Legal sub-footer bar */
.bold-foot__legal { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem 1.5rem; margin-top: clamp(2rem, 4vw, 3rem); padding-top: clamp(1.25rem, 2.5vw, 1.75rem); border-top: 1px solid rgba(255,255,255,0.12); }
.bold-foot__legal > p { margin: 0; color: #9d9a93; font-size: 0.82rem; }
.bold-foot__legal-nav { display: flex; flex-wrap: wrap; gap: 0.85rem 1.35rem; }
.bold-foot__legal-nav a { color: #c9c6bf; text-decoration: none; font-size: 0.82rem; transition: color var(--alloway-transition); }
.bold-foot__legal-nav a:hover, .bold-foot__legal-nav a:focus-visible { color: #fff; }
.bold-foot__top { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--wp--preset--color--on-dark) !important; text-decoration: none; font-family: var(--bold-cond); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem; }
.bold-foot__top svg { width: 15px; height: 15px; }
.bold-foot__top:hover { text-decoration: underline; }
@media (max-width: 905px) {
	.bold-foot__grid { grid-template-columns: 1fr; }
	.bold-foot__brand { align-self: stretch; }
	.bold-foot__panel { clip-path: none; padding-left: clamp(1.5rem, 5vw, 2.75rem); }
	.bold-foot__panel-grid { grid-template-columns: 1fr 1fr; }
	.bold-foot__legal { justify-content: flex-start; }
}
@media (max-width: 480px) { .bold-foot__panel-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
	.bold-cat__img img,
	.bold-video__play,
	.bold-mega,
	.bold-nav,
	.bold-tl__year,
	.bold-tl__dot { transition: none !important; animation: none !important; }
	.bold-header.is-open .bold-nav > * { animation: none !important; }
}
