/* Central Relocations */

:root {
	--red: #d3141b;
	--red-dark: #a10f14;
	--ink: #17171a;
	--body: #3a3a40;
	--muted: #55555c;
	--faint: #8a8a92;
	--line: #d4d4d8;
	--line-soft: #eeeef0;
	--silver: #c9ccd1;
	--bg: #f4f4f5;
	--black: #000;
	--night: #0b0b0d;
	--white: #fff;
	--radius: 6px;
	--radius-sm: 4px;
	--shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	--font: 'Barlow', Helvetica, Arial, sans-serif;
	--font-display: 'Oswald', 'Arial Narrow', Arial, sans-serif;
	--wrap: 1140px;
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.site-main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
p { margin: 0 0 16px; }
input, textarea, select, button { font: inherit; }
h1, h2, h3, h4 { margin: 0; }
ul.menu, ul.features, ul.chips, ul.contact-list, .calc__list { list-style: none; margin: 0; padding: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap--narrow { max-width: 800px; }
.section { padding-top: 64px; padding-bottom: 64px; }
.stack { display: grid; gap: 24px; }
.stack--sm { gap: 16px; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--white); color: var(--ink); padding: 8px 14px; border-radius: var(--radius-sm); }
.skip-link:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

/* Type */
.eyebrow {
	font-family: var(--font-display); color: var(--red); font-weight: 700;
	letter-spacing: 0.18em; text-transform: uppercase; font-size: 14px; margin: 0 0 10px;
}
.h2 { font-family: var(--font-display); font-weight: 700; font-size: 40px; line-height: 1; margin: 0 0 20px; text-transform: uppercase; }
.h3 { font-family: var(--font-display); font-weight: 700; font-size: 28px; line-height: 1.05; margin: 0 0 8px; text-transform: uppercase; }
.h4 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 24px 0 8px; text-transform: uppercase; }
.text-red { color: var(--red); }
.text-center { text-align: center; }
.text-muted { color: var(--silver); }
.section p, .prose p { line-height: 1.65; color: var(--body); text-wrap: pretty; }
.band--dark .section p { color: var(--silver); }
.section-intro { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--faint); font-weight: 600; }

/* Buttons */
.btn {
	display: inline-block; padding: 12px 24px; border-radius: var(--radius-sm); border: 0; cursor: pointer;
	font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1.2;
	text-transform: uppercase; letter-spacing: 0.06em; text-align: center;
	transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}
.btn--lg { padding: 14px 28px; font-size: 18px; }
.btn--block { display: block; width: 100%; padding: 14px; font-size: 18px; }
.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-dark); color: var(--white); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--red); color: var(--white); }
.btn--ghost { border: 2px solid var(--silver); color: var(--white); padding: 12px 26px; }
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); color: var(--white); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-row--center { justify-content: center; margin-top: 36px; }
.link-btn { border: 0; background: none; color: var(--faint); font-size: 14px; cursor: pointer; text-decoration: underline; padding: 4px; }
.link-btn:hover { color: var(--red); }

/* Top bar */
.topbar { background: var(--black); color: var(--silver); font-size: 13px; }
.topbar__inner { padding-top: 8px; padding-bottom: 8px; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; align-items: center; }
.topbar__contact, .topbar__social { display: flex; gap: 8px 20px; flex-wrap: wrap; }
.topbar a { color: var(--silver); }
.topbar a:hover { color: var(--white); }
.topbar__social a { color: var(--white); font-weight: 600; }
.topbar__social a:hover { color: var(--silver); }

/* Header */
.site-header { background: var(--black); border-bottom: 3px solid var(--red); position: sticky; top: 0; z-index: 20; }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 0; } }
.site-header__inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
/* Logo sits in a black tab that hangs over the bottom of the header. */
.brand { align-self: flex-start; position: relative; z-index: 1; background: var(--black); padding: 8px 10px 6px; margin-bottom: -44px; border-radius: 0 0 8px 8px; }
.brand img { height: 100px; width: auto; }

.menu--primary { display: flex; align-items: center; gap: 24px; font-family: var(--font-display); font-weight: 500; font-size: 16px; text-transform: uppercase; letter-spacing: 0.04em; }
.menu--primary a { color: var(--white); }
.menu--primary a:hover, .menu--primary .current-menu-item > a { color: var(--red); }
.menu--primary li:last-child a {
	background: var(--red); color: var(--white); padding: 10px 18px; border-radius: var(--radius-sm);
	text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-display); font-size: 16px; font-weight: 700; display: inline-block;
}
.menu--primary li:last-child a:hover { background: var(--red-dark); color: var(--white); }

.nav-toggle { display: none; background: none; border: 2px solid #333; border-radius: var(--radius-sm); width: 46px; height: 42px; cursor: pointer; position: relative; }
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
	position: absolute; left: 50%; width: 22px; height: 2px; background: var(--white); margin-left: -11px; transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle__bars { top: 50%; margin-top: -1px; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ''; left: 0; margin-left: 0; }
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after { top: 7px; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars::after { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 861px) { .menu--primary .mobile-only { display: none; } }
@media (max-width: 860px) {
	.site-header__inner { min-height: 60px; }
	.brand { padding: 6px 8px 4px; margin-bottom: -26px; }
	.brand img { height: 72px; }
	.nav-toggle { display: block; }
	.site-nav { display: none; position: absolute; z-index: 2; left: 0; right: 0; top: 100%; background: var(--black); border-bottom: 3px solid var(--red); }
	.site-nav.is-open { display: block; }
	ul.menu--primary { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 20px 20px; font-size: 18px; }
	.menu--primary a { display: block; padding: 12px 0; border-bottom: 1px solid #222; }
	.menu--primary li:last-child a { margin-top: 14px; text-align: center; padding: 14px; border: 0; display: block; }
	.topbar__social { display: none; }
}

/* Page hero */
.page-hero { background: var(--night); color: var(--white); }
.page-hero .wrap { padding-top: 80px; padding-bottom: 56px; }
.page-hero__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(38px, 6vw, 52px); line-height: 1; text-transform: uppercase; }
.page-hero__intro { color: var(--silver); margin: 12px 0 0; font-size: 17px; }

/* Home hero */
.hero { position: relative; background: var(--night); color: var(--white); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.2) 100%); }
.hero__inner { position: relative; padding-top: 112px; padding-bottom: 104px; }
.hero .eyebrow { font-size: 15px; margin-bottom: 14px; }
.hero__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 6vw, 72px); line-height: 0.98; margin: 0 0 20px; max-width: 760px; text-transform: uppercase; letter-spacing: 0.01em; }
.hero__lead { font-size: 18px; line-height: 1.55; max-width: 600px; margin: 0 0 32px; color: #e6e7ea; text-wrap: pretty; }

.photo-strip { margin-top: -48px; position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.photo-strip__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

/* Layout */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 48px; align-items: start; }
.split--center { align-items: center; }
.split--quote { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 32px; }
.band--white { background: var(--white); }
.band--dark { background: var(--night); color: var(--white); }
.about__img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }

.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }

.features { display: grid; gap: 12px; }
.feature { background: var(--white); border-left: 4px solid var(--red); padding: 18px 20px; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.feature h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; text-transform: uppercase; }
.feature p { color: var(--muted) !important; font-size: 15px; margin: 4px 0 0; line-height: 1.5 !important; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-bottom: 36px; }
.service-card { display: block; background: var(--white); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); border-top: 4px solid var(--red); color: var(--ink); transition: transform 0.15s, box-shadow 0.15s; }
.service-card:hover { color: var(--ink); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.service-card__icon { display: block; font-size: 36px; line-height: 1; margin-bottom: 14px; }
.service-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin: 0 0 8px; text-transform: uppercase; }
.service-card p { margin: 0; color: var(--muted) !important; font-size: 15px; line-height: 1.55 !important; }

.service-row { padding: 32px; display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 20px; align-items: start; scroll-margin-top: 110px; }
.service-row__icon { font-size: 44px; line-height: 1; }
.service-row .h3 { font-size: 30px; }
.service-row__blurb { margin: 0 0 10px !important; }
.service-row__detail { margin: 0 !important; color: var(--muted) !important; font-size: 15px; }
@media (max-width: 520px) { .service-row { grid-template-columns: 1fr; padding: 24px; gap: 12px; } }

/* Coverage */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip { border: 1px solid var(--silver); color: var(--white); padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 600; }
.chip--link { display: inline-block; }
.chip--link:hover { border-color: var(--red); background: var(--red); color: var(--white); }
.chips--center { justify-content: center; }
.chips--light .chip { border-color: var(--line); color: var(--ink); background: var(--bg); font-size: 13px; padding: 6px 12px; }
.area-suburbs { padding: 24px; }
.area-suburbs .h4 { margin-top: 0; }
.area-suburbs .chips { margin-top: 12px; }
.map { display: block; width: 100%; height: 240px; border: 0; border-radius: var(--radius); }
.map--tall { height: 340px; filter: grayscale(0.4); }

/* Contact */
.contact-list { display: grid; gap: 10px; font-size: 15px; margin-top: 24px; }
.contact-list a { color: var(--ink); }
.contact-list a:hover { color: var(--red); }
.contact-card { padding: 22px 24px; color: var(--ink); display: flex; gap: 16px; align-items: center; }
.contact-card:hover { color: var(--red); }
.contact-card__icon { font-size: 28px; }
.contact-card strong { display: block; font-size: 18px; overflow-wrap: anywhere; }

/* Forms */
.form { padding: 28px; display: grid; gap: 14px; scroll-margin-top: 110px; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }
.field { display: grid; gap: 4px; }
.field__label { font-size: 13px; color: var(--muted); font-weight: 600; }
.field input, .field textarea, .field select {
	width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
	font-size: 15px; color: var(--ink); background: var(--white);
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(211, 20, 27, 0.15); }
.form__summary { background: var(--bg); border-radius: var(--radius-sm); padding: 12px 14px; font-size: 14px; color: var(--body); }
.form__small { margin: 0 !important; color: var(--faint) !important; font-size: 13px; line-height: 1.5 !important; }
.form-notice { padding: 14px 16px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; }
.form-notice--ok { background: #e7f6ec; color: #145c2e; border: 1px solid #b7e2c4; }
.form-notice--err { background: #fdecec; color: #8a1016; border: 1px solid #f4c2c4; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Volume calculator */
.calc { overflow: hidden; }
.calc__head { background: var(--ink); color: var(--white); padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.calc__title { font-family: var(--font-display); font-weight: 700; font-size: 22px; text-transform: uppercase; }
.calc__tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.calc__tab { border: 1px solid var(--muted); background: transparent; color: var(--white); padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; cursor: pointer; }
.calc__tab:hover { border-color: var(--silver); }
.calc__tab[aria-selected='true'] { background: var(--red); border-color: var(--red); }
.calc__item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 24px; border-bottom: 1px solid var(--line-soft); }
.calc__item.has-qty { background: #fff8f8; }
.calc__name { font-weight: 600; font-size: 15px; }
.calc__m3 { color: var(--faint); font-size: 12px; }
.stepper { display: flex; align-items: center; gap: 8px; }
.stepper__btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); font-size: 18px; cursor: pointer; line-height: 1; color: var(--ink); }
.stepper__btn:hover { border-color: var(--red); color: var(--red); }
.stepper__qty { width: 24px; text-align: center; font-weight: 700; font-size: 16px; }
.calc__foot { padding: 20px 24px; background: var(--bg); display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; }
.calc__total { font-family: var(--font-display); font-weight: 700; font-size: 44px; line-height: 1; color: var(--red); }
.calc__total small { font-size: 22px; color: var(--ink); }
.calc__loads { color: var(--muted); font-size: 14px; margin-top: 4px; }
.calc__noscript { padding: 16px 24px; margin: 0; color: var(--muted); }

/* Packing supplies */
.supplies { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr); gap: 32px; align-items: start; }
.supply-group { overflow: hidden; scroll-margin-top: 110px; }
.supply-group__head { background: var(--ink); color: var(--white); padding: 18px 24px; display: flex; gap: 16px; align-items: center; }
.supply-group__icon { font-size: 32px; line-height: 1; }
.supply-group__blurb { margin: 2px 0 0 !important; color: var(--silver) !important; font-size: 14px; line-height: 1.4 !important; }
.supplies__picked { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 2px; }
.form__summary .link-btn { padding: 4px 0 0; }
/* Keep the request form in view, only where the viewport is tall enough to show all of it. */
@media (min-width: 901px) and (min-height: 940px) { .supplies__form { position: sticky; top: 110px; } }
@media (max-width: 900px) { .supplies { grid-template-columns: minmax(0, 1fr); } }
.supply-cta { padding: 28px 32px; display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; gap: 20px; align-items: center; border-left: 4px solid var(--red); }
.supply-cta__icon { font-size: 44px; line-height: 1; }
.supply-cta .h3 { margin-bottom: 4px; }
.supply-cta p { margin: 0 !important; color: var(--muted) !important; }
@media (max-width: 700px) { .supply-cta { grid-template-columns: 1fr; padding: 24px; gap: 12px; } }

/* Gallery */
.gallery-grid, .gallery-content .wp-block-gallery {
	display: grid !important; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px !important;
}
.gallery-grid__img, .gallery-content .wp-block-gallery img { width: 100% !important; height: auto !important; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
.gallery-content .wp-block-gallery .wp-block-image { width: 100% !important; margin: 0 !important; }
.gallery-content .wp-block-gallery figcaption { font-size: 13px; }

/* Reviews */
.wisemove { margin-bottom: 32px; }
.band .wisemove { margin-bottom: 0; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review { padding: 28px; margin: 0; }
.review__stars { color: var(--red); letter-spacing: 2px; margin-bottom: 12px; }
.review__text { margin: 0 0 16px; }
.review__text p { font-size: 16px; }
.review__name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 18px; text-transform: uppercase; }
.review__where { display: block; color: var(--faint); font-size: 14px; }
.empty-state { padding: 40px 28px; text-align: center; max-width: 640px; margin: 0 auto; }

/* Blog */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 24px; }
.post-card { overflow: hidden; }
.post-card__link { display: flex; flex-direction: column; height: 100%; color: var(--ink); }
.post-card__link:hover { color: var(--ink); }
.post-card__link:hover .post-card__title { color: var(--red); }
.post-card__img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.post-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card__body p { margin: 0 !important; }
.post-card__title { font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.2; text-transform: uppercase; transition: color 0.15s; }
.post-card__excerpt { color: var(--muted) !important; font-size: 15px; line-height: 1.55 !important; }
.post-card__more { margin-top: auto; padding-top: 6px; color: var(--red); font-weight: 600; font-size: 15px; }
.post__img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); margin-bottom: 32px; }
.post__cta { margin-top: 48px; padding: 28px 32px; border-left: 4px solid var(--red); }
.post__cta p { color: var(--body); }
.post__cta .btn-row { margin: 16px 0 0; }
.nav-links { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.nav-links .page-numbers { padding: 8px 14px; background: var(--white); border-radius: var(--radius-sm); color: var(--ink); box-shadow: var(--shadow); }
.nav-links .current { background: var(--red); color: var(--white); }

/* FAQ */
.faq-group + .faq-group { margin-top: 40px; }
.faq-group__title { margin-bottom: 16px; }
.faq { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 10px; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 56px 18px 24px; font-weight: 600; font-size: 17px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 26px; font-weight: 400; color: var(--red); line-height: 1; }
.faq[open] summary::after { content: '−'; }
.faq summary:hover { color: var(--red); }
.faq__answer { padding: 0 24px 20px; }
.faq__answer p:last-child { margin-bottom: 0; }

/* Editor content (policy, terms, privacy) */
.prose { font-size: 16px; line-height: 1.7; color: var(--body); }
.prose > * + * { margin-top: 0; }
.prose h2, .prose h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; color: var(--ink); margin: 32px 0 8px; line-height: 1.1; }
.prose h2 { font-size: 30px; }
.prose h3 { font-size: 24px; }
.prose > :first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 16px; }
.prose li { margin-bottom: 6px; }
.prose a { text-decoration: underline; }
.prose ol { padding-left: 1.4em; }
.prose blockquote { margin: 24px 0; padding: 4px 0 4px 20px; border-left: 4px solid var(--red); color: var(--ink); }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 15px; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--white); font-weight: 600; color: var(--ink); }
.prose .wp-block-table { overflow-x: auto; margin: 0 0 20px; }
.prose img { border-radius: var(--radius); }
.prose figure { margin: 24px 0; }
/* Placeholder wording the client still needs to confirm. */
.prose mark.todo { background: #ffe94d; color: var(--ink); padding: 0 3px; border-radius: 2px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.archive-item { padding: 24px 28px; margin-bottom: 16px; }

/* Footer */
.site-footer { background: var(--black); color: var(--silver); border-top: 3px solid var(--red); }
.site-footer__badges { display: flex; flex-wrap: wrap; gap: 16px; padding-top: 32px; }
.badge { display: flex; align-items: center; gap: 20px; background: var(--white); color: var(--ink); border-radius: var(--radius); padding: 16px 24px; flex: 1 1 320px; }
a.badge:hover { color: var(--ink); box-shadow: 0 0 0 3px var(--red); }
.badge img { height: 52px; width: auto; flex-shrink: 0; }
.badge--wisemove img { height: 26px; }
.site-footer .badge__text { margin: 0; font-size: 14px; line-height: 1.35; color: var(--muted); max-width: none; }
.badge__text strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 17px; text-transform: uppercase; color: var(--ink); letter-spacing: 0.02em; }
@media (max-width: 480px) { .badge { flex-direction: column; align-items: flex-start; gap: 12px; } }
.site-footer__grid { padding-top: 48px; padding-bottom: 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; }
.site-footer__logo { height: 120px; width: auto; margin-bottom: 12px; }
.site-footer p { margin: 0; font-size: 14px; line-height: 1.6; max-width: 280px; }
.site-footer__heading { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--white); margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0.08em; }
.site-footer .menu { display: grid; gap: 8px; font-size: 14px; }
.site-footer .menu a { color: var(--silver); }
.site-footer .menu a:hover { color: var(--white); }
.site-footer__social { margin-top: 16px !important; }
.site-footer__legal { border-top: 1px solid #222; text-align: center; padding: 16px 20px; font-size: 13px; color: var(--faint); }

@media (max-width: 600px) {
	.section { padding-top: 48px; padding-bottom: 48px; }
	.h2 { font-size: 34px; }
	.hero__inner { padding-top: 64px; padding-bottom: 88px; }
	.form { padding: 22px; }
	.calc__item, .calc__head, .calc__foot, .supply-group__head { padding-left: 16px; padding-right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { transition: none !important; }
}
