/* =========================================================================
   Wheels and Bikes — design system
   Brand: orange #eb561c · chainring grey #6f6f6f · accent green #4cae37
   Display: Oswald · Body: Inter
   ========================================================================= */

:root {
	--wb-orange:       #eb561c;
	--wb-orange-dark:  #c8410f;
	--wb-orange-light: #f0783c;
	--wb-orange-tint:  #fdeee7;
	--wb-green:        #4cae37;
	--wb-green-dark:   #3f942d;
	--wb-ink:          #23262b;
	--wb-body:         #54585e;
	--wb-grey:         #6f6f6f;
	--wb-muted:        #8b9096;
	--wb-line:         #e7e8ea;
	--wb-bg:           #ffffff;
	--wb-bg-alt:       #f5f6f7;
	--wb-dark:         #202329;
	--wb-dark-2:       #2a2e35;

	--wb-radius:       12px;
	--wb-radius-lg:    18px;
	--wb-shadow:       0 6px 24px rgba(32, 35, 41, .08);
	--wb-shadow-lg:    0 18px 48px rgba(32, 35, 41, .14);
	--wb-container:    1180px;
	--wb-ease:         cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 17px;
	line-height: 1.7;
	color: var(--wb-body);
	background: var(--wb-bg);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wb-orange); text-decoration: none; transition: color .18s var(--wb-ease); }
a:hover { color: var(--wb-orange-dark); }

h1, h2, h3, h4, h5 {
	font-family: "Oswald", "Inter", sans-serif;
	color: var(--wb-ink);
	line-height: 1.12;
	margin: 0 0 .5em;
	font-weight: 600;
	letter-spacing: .3px;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); text-transform: uppercase; }
h3 { font-size: 1.32rem; }
p { margin: 0 0 1.1em; }
strong { color: var(--wb-ink); }

/* ---------- Layout ---------- */
.wb-container { width: 100%; max-width: var(--wb-container); margin: 0 auto; padding: 0 24px; }
.wb-section { padding: clamp(56px, 8vw, 104px) 0; }
.wb-section--alt { background: var(--wb-bg-alt); }
.wb-section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.wb-narrow { max-width: 780px; }
.wb-center { text-align: center; }

.wb-eyebrow {
	display: inline-block;
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	font-size: .82rem;
	font-weight: 600;
	color: var(--wb-orange);
	margin-bottom: 14px;
}
.wb-eyebrow--light { color: #ffd9c6; }
.wb-lead { font-size: 1.18rem; color: var(--wb-body); }
.wb-section__head { max-width: 720px; margin: 0 0 44px; }
.wb-section__head.wb-center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.wb-btn {
	display: inline-flex; align-items: center; gap: .5em;
	font-family: "Oswald", sans-serif; font-weight: 600; text-transform: uppercase;
	letter-spacing: .6px; font-size: .95rem;
	padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
	cursor: pointer; transition: all .2s var(--wb-ease); line-height: 1;
	background: var(--wb-orange); color: #fff;
}
.wb-btn:hover { background: var(--wb-orange-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(235, 86, 28, .32); }
.wb-btn--ghost { background: transparent; color: var(--wb-ink); border-color: var(--wb-line); }
.wb-btn--ghost:hover { background: var(--wb-ink); color: #fff; border-color: var(--wb-ink); box-shadow: none; }
.wb-btn--green { background: var(--wb-green); }
.wb-btn--green:hover { background: var(--wb-green-dark); box-shadow: 0 10px 22px rgba(76, 174, 55, .32); }
.wb-btn--light { background: #fff; color: var(--wb-orange); }
.wb-btn--light:hover { background: var(--wb-ink); color: #fff; }
.wb-btn--lg { padding: 17px 36px; font-size: 1.02rem; }
.wb-btn .wb-ico { width: 18px; height: 18px; }

.wb-arrow { display: inline-flex; align-items: center; gap: .4em; font-family: "Oswald", sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; font-size: .9rem; color: var(--wb-orange); }
.wb-arrow::after { content: "→"; transition: transform .2s var(--wb-ease); }
.wb-arrow:hover::after { transform: translateX(4px); }

/* =========================================================================
   Top bar
   ========================================================================= */
.wb-topbar { background: var(--wb-dark); color: #b9bdc4; font-size: .86rem; }
.wb-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 42px; padding: 6px 24px; max-width: var(--wb-container); margin: 0 auto; }
.wb-topbar a { color: #d7dade; }
.wb-topbar a:hover { color: #fff; }
.wb-topbar__items { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.wb-topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.wb-topbar__item .wb-ico { width: 15px; height: 15px; color: var(--wb-orange-light); }
.wb-topbar__hours strong { color: #fff; }

/* =========================================================================
   Header / nav
   ========================================================================= */
.wb-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--wb-line); }
.wb-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 78px; }
.wb-brand img { height: 34px; width: auto; }

/* Text wordmark: orange WHEELS/BIKES with a green vertical "AND" (crisp, scalable). */
.wb-logo {
	font-family: "Oswald", sans-serif; font-weight: 700; text-transform: uppercase;
	font-size: 1.85rem; line-height: 1; letter-spacing: 0; color: var(--wb-orange);
	display: inline-flex; align-items: center; white-space: nowrap;
}
.wb-logo__and {
	display: inline-block; transform: rotate(-90deg);
	color: var(--wb-green); font-size: .34em; font-weight: 700;
	letter-spacing: 1px; margin: 0 .02em; line-height: 1;
}
.wb-footer__brand.wb-logo { font-size: 1.7rem; margin-bottom: 14px; }

.wb-nav__list { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.wb-nav__list a {
	display: block; font-family: "Oswald", sans-serif; font-weight: 500; text-transform: uppercase;
	letter-spacing: .7px; font-size: .96rem; color: var(--wb-ink); padding: 10px 15px; border-radius: 8px;
	transition: color .18s, background .18s;
}
.wb-nav__list a:hover { color: var(--wb-orange); background: var(--wb-orange-tint); }
.wb-nav__list .current-menu-item > a,
.wb-nav__list .current_page_item > a { color: var(--wb-orange); }
.wb-nav__list .current-menu-item > a::after,
.wb-nav__list .current_page_item > a::after { content: ""; display: block; height: 3px; background: var(--wb-orange); border-radius: 3px; margin-top: 5px; }

/* sub-menus */
.wb-nav__list li { position: relative; }
.wb-nav__list .sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff; list-style: none; margin: 0; padding: 8px;
	border-radius: 12px; box-shadow: var(--wb-shadow-lg); border: 1px solid var(--wb-line);
	opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s var(--wb-ease); z-index: 20;
}
.wb-nav__list li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.wb-nav__list .sub-menu a { padding: 9px 14px; font-size: .9rem; }
.wb-nav__list .sub-menu a::after { display: none; }

.wb-header__cta { display: flex; align-items: center; gap: 14px; }
.wb-nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.wb-nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--wb-ink); border-radius: 3px; transition: .25s var(--wb-ease); }
.wb-nav-toggle span + span { margin-top: 6px; }
body.wb-nav-open .wb-nav-toggle span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
body.wb-nav-open .wb-nav-toggle span:nth-child(2) { opacity: 0; }
body.wb-nav-open .wb-nav-toggle span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* =========================================================================
   Hero (home)
   ========================================================================= */
.wb-hero { position: relative; background: var(--wb-orange); color: #fff; overflow: hidden; }
.wb-hero::before {
	content: ""; position: absolute; inset: 0; z-index: 0;
	background: url("../img/pageheader.jpg") center/cover no-repeat;
	opacity: .5; mix-blend-mode: multiply;
}
.wb-hero::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(105deg, rgba(200,65,15,.55) 0%, rgba(235,86,28,.15) 60%, rgba(235,86,28,0) 100%); }
.wb-hero__inner { position: relative; z-index: 1; padding: clamp(70px, 11vw, 130px) 0; max-width: 760px; }
.wb-hero__grid { position: relative; z-index: 1; padding: clamp(56px, 8vw, 104px) 0; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.wb-hero__content { max-width: 600px; }
.wb-hero__aside .wpmcp-oh { max-width: 440px; margin-left: auto; }
.wb-hero h1 { color: #fff; margin-bottom: 18px; text-shadow: 0 2px 20px rgba(120,35,5,.25); }
.wb-hero__lead { font-size: 1.28rem; color: #fff; opacity: .96; margin-bottom: 30px; max-width: 620px; }
.wb-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* =========================================================================
   Cards / service grid
   ========================================================================= */
.wb-grid { display: grid; gap: 26px; }
.wb-grid--3 { grid-template-columns: repeat(3, 1fr); }
.wb-grid--2 { grid-template-columns: repeat(2, 1fr); }
.wb-grid--4 { grid-template-columns: repeat(4, 1fr); }

.wb-card {
	background: #fff; border: 1px solid var(--wb-line); border-radius: var(--wb-radius-lg);
	padding: 32px 28px; transition: transform .22s var(--wb-ease), box-shadow .22s var(--wb-ease), border-color .22s;
	display: flex; flex-direction: column; height: 100%;
}
.wb-card:hover { transform: translateY(-6px); box-shadow: var(--wb-shadow-lg); border-color: transparent; }
.wb-card__icon {
	width: 58px; height: 58px; border-radius: 14px; background: var(--wb-orange-tint); color: var(--wb-orange);
	display: grid; place-items: center; margin-bottom: 20px;
}
.wb-card__icon .wb-ico { width: 30px; height: 30px; }
.wb-card h3 { margin-bottom: 8px; text-transform: uppercase; }
.wb-card p { font-size: .98rem; margin-bottom: 18px; }
.wb-card__foot { margin-top: auto; }

/* numbered / plain service block */
.wb-service { display: flex; gap: 20px; padding: 26px 0; border-top: 1px solid var(--wb-line); }
.wb-service:last-child { border-bottom: 1px solid var(--wb-line); }
.wb-service__num { font-family: "Oswald", sans-serif; font-weight: 700; font-size: 2rem; color: var(--wb-orange); line-height: 1; min-width: 54px; }
.wb-service h3 { margin-bottom: 6px; }
.wb-service p { margin-bottom: 6px; }

/* =========================================================================
   Opening hours (prominent)
   ========================================================================= */
.wb-hours {
	background: var(--wb-dark); color: #d7dade; border-radius: var(--wb-radius-lg); overflow: hidden;
	box-shadow: var(--wb-shadow-lg);
}
.wb-hours__head { background: var(--wb-orange); color: #fff; padding: 22px 28px; display: flex; align-items: center; gap: 14px; }
.wb-hours__head .wb-ico { width: 30px; height: 30px; }
.wb-hours__head h3 { color: #fff; margin: 0; text-transform: uppercase; letter-spacing: .5px; }
.wb-hours__status { margin-left: auto; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .5px; font-size: .82rem; font-weight: 600; padding: 6px 14px; border-radius: 999px; display: inline-flex; align-items: center; gap: 7px; }
.wb-hours__status--open { background: var(--wb-green); color: #fff; }
.wb-hours__status--closed { background: rgba(255,255,255,.14); color: #fff; }
.wb-hours__status .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 0 rgba(255,255,255,.6); }
.wb-hours__status--open .dot { animation: wb-pulse 1.8s infinite; }
@keyframes wb-pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.55); } 70% { box-shadow: 0 0 0 7px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }

.wb-hours__list { list-style: none; margin: 0; padding: 10px 28px 22px; }
.wb-hours__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.wb-hours__row:last-child { border-bottom: 0; }
.wb-hours__day { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .6px; font-size: .95rem; color: #fff; }
.wb-hours__val { font-weight: 500; color: #d7dade; text-align: right; }
.wb-hours__row--today { background: rgba(235,86,28,.14); margin: 0 -28px; padding-left: 28px; padding-right: 28px; }
.wb-hours__row--today .wb-hours__day { color: var(--wb-orange-light); }
.wb-hours__row--closed .wb-hours__val { color: var(--wb-muted); }
.wb-hours__note { padding: 0 28px 22px; font-size: .88rem; color: var(--wb-muted); }

/* light variant (on light sections) */
.wb-hours--light { background: #fff; color: var(--wb-body); border: 1px solid var(--wb-line); }
.wb-hours--light .wb-hours__row { border-color: var(--wb-line); }
.wb-hours--light .wb-hours__day { color: var(--wb-ink); }
.wb-hours--light .wb-hours__val { color: var(--wb-body); }
.wb-hours--light .wb-hours__row--today { background: var(--wb-orange-tint); }

/* inline compact list (shortcode default) */
.wb-hours-inline { list-style: none; margin: 0; padding: 0; }
.wb-hours-inline li { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px dashed var(--wb-line); }
.wb-hours-inline li:last-child { border-bottom: 0; }
.wb-hours-inline .wb-hours__day { color: var(--wb-ink); }

/* =========================================================================
   Brand logo strip
   ========================================================================= */
.wb-brands { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: center; }
.wb-brands__item { display: grid; place-items: center; padding: 18px 10px; background: #fff; border: 1px solid var(--wb-line); border-radius: 12px; }
.wb-brands__item img { max-height: 44px; width: auto; filter: grayscale(1); opacity: .62; transition: filter .25s, opacity .25s, transform .25s; }
.wb-brands__item:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.04); }

/* =========================================================================
   CTA band
   ========================================================================= */
.wb-cta {
	position: relative; background: var(--wb-orange); color: #fff; border-radius: var(--wb-radius-lg); overflow: hidden;
	padding: clamp(38px, 5vw, 60px); text-align: center;
}
.wb-cta::before { content: ""; position: absolute; inset: 0; background: url("../img/pageheader.jpg") center/cover; opacity: .22; mix-blend-mode: multiply; }
.wb-cta > * { position: relative; z-index: 1; }
.wb-cta h2 { color: #fff; }
.wb-cta p { color: #fff; opacity: .95; max-width: 640px; margin: 0 auto 26px; font-size: 1.14rem; }
.wb-cta__phone { font-family: "Oswald", sans-serif; font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.4rem); letter-spacing: 1px; color: #fff; display: inline-flex; align-items: center; gap: .4em; }
.wb-cta__phone:hover { color: #fff; }
.wb-cta__phone .wb-ico { width: .9em; height: .9em; }

/* =========================================================================
   Testimonial
   ========================================================================= */
.wb-quote { max-width: 780px; margin: 0 auto; text-align: center; }
.wb-quote__mark { font-family: "Oswald", sans-serif; font-size: 4rem; line-height: .6; color: var(--wb-orange); }
.wb-quote blockquote { font-size: 1.4rem; line-height: 1.5; color: var(--wb-ink); font-weight: 500; margin: 12px 0 18px; border: 0; padding: 0; }
.wb-quote cite { font-style: normal; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 1px; color: var(--wb-orange); font-weight: 600; }

/* =========================================================================
   Page header (interior)
   ========================================================================= */
.wb-pagehead { position: relative; background: var(--wb-orange); color: #fff; overflow: hidden; }
.wb-pagehead::before { content: ""; position: absolute; inset: 0; background: url("../img/pageheader.jpg") right center/cover; opacity: .45; mix-blend-mode: multiply; }
.wb-pagehead .wb-container { position: relative; z-index: 1; padding-top: clamp(46px, 7vw, 78px); padding-bottom: clamp(46px, 7vw, 78px); }
.wb-pagehead__title { color: #fff; margin: 0; }
.wb-pagehead .wb-eyebrow { color: #ffd9c6; }

/* =========================================================================
   Content (prose)
   ========================================================================= */
.wb-prose { font-size: 1.06rem; }
.wb-prose h2 { margin-top: 1.6em; }
.wb-prose h3 { margin-top: 1.4em; color: var(--wb-ink); }
.wb-prose ul, .wb-prose ol { padding-left: 1.2em; margin: 0 0 1.2em; }
.wb-prose li { margin-bottom: .5em; }
.wb-prose a { text-decoration: underline; text-underline-offset: 3px; }
.wb-prose img { border-radius: var(--wb-radius); margin: 1.4em 0; }
.wb-prose blockquote { border-left: 4px solid var(--wb-orange); background: var(--wb-bg-alt); margin: 1.5em 0; padding: 14px 22px; border-radius: 0 12px 12px 0; }

/* checklist / rules list */
.wb-rules { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.wb-rules li { position: relative; padding: 20px 22px 20px 62px; background: #fff; border: 1px solid var(--wb-line); border-radius: var(--wb-radius); }
.wb-rules li::before {
	content: ""; position: absolute; left: 20px; top: 22px; width: 26px; height: 26px; border-radius: 50%;
	background: var(--wb-green); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-size: 16px; background-position: center; background-repeat: no-repeat;
}
.wb-rules li strong { display: block; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .4px; color: var(--wb-ink); font-size: 1.05rem; margin-bottom: 3px; }

/* =========================================================================
   News list
   ========================================================================= */
.wb-posts { display: grid; gap: 26px; grid-template-columns: repeat(2, 1fr); }
.wb-post { background: #fff; border: 1px solid var(--wb-line); border-radius: var(--wb-radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .22s var(--wb-ease), box-shadow .22s; }
.wb-post:hover { transform: translateY(-5px); box-shadow: var(--wb-shadow-lg); }
.wb-post__thumb { aspect-ratio: 16/9; background: var(--wb-orange-tint); overflow: hidden; }
.wb-post__thumb img { width: 100%; height: 100%; object-fit: cover; }
.wb-post__thumb--placeholder { background: var(--wb-orange) url("../img/pageheader.jpg") center/cover; }
.wb-post__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.wb-post__date { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: .78rem; color: var(--wb-orange); margin-bottom: 8px; }
.wb-post h2, .wb-post h3 { font-size: 1.4rem; margin-bottom: 10px; }
.wb-post h2 a, .wb-post h3 a { color: var(--wb-ink); }
.wb-post h2 a:hover, .wb-post h3 a:hover { color: var(--wb-orange); }
.wb-post__foot { margin-top: auto; padding-top: 12px; }

/* =========================================================================
   Contact
   ========================================================================= */
.wb-contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.wb-contact-info { display: grid; gap: 14px; }
.wb-contact-info__item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; background: #fff; border: 1px solid var(--wb-line); border-radius: var(--wb-radius); }
.wb-contact-info__item .wb-ico { width: 22px; height: 22px; color: var(--wb-orange); flex: none; margin-top: 3px; }
.wb-contact-info__item strong { display: block; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .5px; font-size: .82rem; color: var(--wb-muted); margin-bottom: 2px; }
.wb-contact-info__item span, .wb-contact-info__item a { color: var(--wb-ink); font-size: 1.05rem; }
.wb-map { border-radius: var(--wb-radius-lg); overflow: hidden; border: 1px solid var(--wb-line); min-height: 300px; }
.wb-map iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }

/* forms */
.wb-form { display: grid; gap: 16px; }
.wb-form label { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .5px; font-size: .82rem; color: var(--wb-ink); display: block; margin-bottom: 6px; }
.wb-form input, .wb-form select, .wb-form textarea {
	width: 100%; padding: 13px 15px; border: 1.5px solid var(--wb-line); border-radius: 10px; font: inherit; color: var(--wb-ink);
	background: #fff; transition: border-color .18s, box-shadow .18s;
}
.wb-form input:focus, .wb-form select:focus, .wb-form textarea:focus { outline: none; border-color: var(--wb-orange); box-shadow: 0 0 0 3px rgba(235,86,28,.14); }
.wb-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wb-form__check { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.wb-form__check input { width: auto; margin-top: 4px; }

.wb-notice { padding: 15px 20px; border-radius: 12px; margin-bottom: 22px; font-size: .98rem; }
.wb-notice--ok { background: #e9f7e5; border: 1px solid #b9e3ab; color: #2f6d1e; }
.wb-notice--err { background: #fdecea; border: 1px solid #f3bcb3; color: #a4331f; }

/* =========================================================================
   Footer
   ========================================================================= */
.wb-footer { background: var(--wb-dark); color: #9aa0a8; padding: 68px 0 0; }
.wb-footer a { color: #c8ccd2; }
.wb-footer a:hover { color: #fff; }
.wb-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 44px; padding-bottom: 52px; }
.wb-footer h4 { color: #fff; text-transform: uppercase; font-size: 1.05rem; letter-spacing: .6px; margin-bottom: 18px; }
.wb-footer__brand { font-family: "Oswald", sans-serif; font-weight: 700; text-transform: uppercase; font-size: 1.7rem; color: var(--wb-orange); letter-spacing: .5px; margin-bottom: 14px; display: inline-block; }
.wb-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.wb-footer__contact { display: grid; gap: 12px; }
.wb-footer__contact .item { display: flex; gap: 11px; align-items: flex-start; }
.wb-footer__contact .wb-ico { width: 18px; height: 18px; color: var(--wb-orange-light); flex: none; margin-top: 3px; }
.wb-footer__legal { font-size: .82rem; color: #6f757d; }
.wb-footer__legal .item { display: flex; gap: 8px; }
.wb-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; }
.wb-footer__bottom a { color: #9aa0a8; }
.wb-social { display: flex; gap: 10px; }
.wb-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; transition: background .2s; }
.wb-social a:hover { background: var(--wb-orange); }
.wb-social .wb-ico { width: 18px; height: 18px; }

/* =========================================================================
   Utilities & reveal
   ========================================================================= */
.wb-ico { display: inline-block; width: 1.15em; height: 1.15em; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
/* Reveal only hides when JS is active (.wb-js), so no-JS users still see everything. */
.wb-js .wb-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--wb-ease), transform .6s var(--wb-ease); }
.wb-js .wb-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.wb-js .wb-reveal { opacity: 1; transform: none; transition: none; }
}
.wb-mt-0 { margin-top: 0; }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 12px; top: 12px; background: #fff; padding: 10px 16px; border-radius: 8px; z-index: 999; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 980px) {
	.wb-hero__grid { grid-template-columns: 1fr; gap: 36px; }
	.wb-hero__content { max-width: 640px; }
	.wb-hero__aside .wpmcp-oh { margin-left: 0; max-width: 520px; }
	.wb-grid--3, .wb-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.wb-brands { grid-template-columns: repeat(4, 1fr); }
	.wb-contact-grid { grid-template-columns: 1fr; }
	.wb-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
	.wb-header__cta .wb-btn { display: none; }
	.wb-nav-toggle { display: block; }
	.wb-nav {
		position: fixed; inset: 78px 0 auto 0; background: #fff; border-bottom: 1px solid var(--wb-line);
		box-shadow: var(--wb-shadow-lg); max-height: 0; overflow: hidden; transition: max-height .3s var(--wb-ease);
	}
	body.wb-nav-open .wb-nav { max-height: calc(100vh - 78px); overflow-y: auto; }
	.wb-nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 12px 16px 20px; }
	.wb-nav__list a { padding: 13px 12px; border-radius: 8px; }
	.wb-nav__list .current-menu-item > a::after, .wb-nav__list .current_page_item > a::after { display: none; }
	.wb-nav__list .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 14px; }
}
@media (max-width: 680px) {
	body { font-size: 16px; }
	.wb-grid--2, .wb-grid--3, .wb-grid--4, .wb-posts { grid-template-columns: 1fr; }
	.wb-brands { grid-template-columns: repeat(3, 1fr); }
	.wb-form__row { grid-template-columns: 1fr; }
	.wb-footer__grid { grid-template-columns: 1fr; gap: 32px; }
	.wb-topbar__items { gap: 14px; }
	.wb-hours__head { flex-wrap: wrap; }
	.wb-hours__status { margin-left: 0; }
}
