/* =============================================================================
   Candle Crafting Custom CSS — Claret + Gold brand
   Primary: #7b2d3e | Accent/CTA: #c9922a | Hover: #d4a43a
   Background: #f9f8f6 | Text: #1a1a1a
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

/* ── LOGO ── */
.logo--branded {
	padding: 18px 24px;
	background: #7b2d3e;
}

.logo--branded .logo__link {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.logo--branded .logo__icon {
	flex-shrink: 0;
	line-height: 0;
}

.logo--branded .logo__title {
	color: #fff;
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: 0.3px;
	font-family: 'Playfair Display', Georgia, serif;
}

.logo--branded .logo__tagline {
	color: rgba(255, 255, 255, 0.65);
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	padding-top: 3px;
	font-size: 0.7rem;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

/* ── PAGE BACKGROUND ── */
body {
	background-color: #f9f8f6;
	color: #1c1917; /* TWEAK: was #1a1a1a — warm near-black — rollback: remove this line */
}

/* ── HERO ── */
.hero--candlecrafting {
	position: relative;
	width: 100%;
	min-height: 420px;
	background-image: url('/images/hero-candle-crafting.jpg');
	background-size: cover;
	background-position: center 40%;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin-bottom: 0;
	overflow: hidden;
}

.hero--candlecrafting::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.2) 0%,
		rgba(10, 20, 40, 0.62) 55%,
		rgba(10, 20, 40, 0.78) 100%
	);
	z-index: 1;
}

.hero--candlecrafting .hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 4rem 1.5rem 3.5rem;
}

.hero__inner {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
}

.hero__eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #c9922a;
	background: rgba(196, 84, 0, 0.12);
	border: 1px solid rgba(196, 84, 0, 0.3);
	border-radius: 20px;
	padding: 4px 14px;
	margin-bottom: 1.2rem;
}

.hero__title {
	font-size: 2.6rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	margin: 0 0 1rem;
	letter-spacing: -0.02em; /* TWEAK: tighten large display type — rollback: remove this line */
}

.hero__tagline {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.65;
	margin: 0 0 2rem;
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
}

.hero__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.hero__cta {
	display: inline-block;
	padding: 0.8rem 2rem;
	font-size: 1rem;
	font-weight: 700;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.hero__cta--primary {
	background-color: #c9922a;
	color: #fff;
}

.hero__cta--primary:hover {
	background-color: #d4a43a;
	color: #fff;
}

.hero__cta--secondary {
	background-color: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero__cta--secondary:hover {
	border-color: #fff;
	color: #fff;
}

/* ── TRUST STRIP ── */
.trust-strip {
	background: #f3ece3;
	border-top: none;
	border-bottom: 2px solid #c9922a;
	padding: 1rem 1.5rem;
	margin-bottom: 0;
}

.trust-strip__inner {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem 2.5rem;
}

.trust-strip__item {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 0.88rem;
	font-weight: 700; /* TWEAK: was 600 — bolder text anchors the strip — rollback: change to 600 */
	color: #7b2d3e; /* TWEAK: was #2c3e50 — navy matches brand, more authority — rollback: change to #2c3e50 */
}

/* ── TRADES SECTION ── */
.trades-section {
	background: #fff;
	border-bottom: 1px solid #e0e0e0;
	padding: 2.5rem 1.5rem 2rem;
}

.trades-section__inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.trades-section__heading {
	font-size: 1.4rem;
	font-weight: 700;
	color: #7b2d3e;
	margin: 0 0 0.3rem;
}

.trades-section__sub {
	font-size: 0.95rem;
	color: #666;
	margin: 0 0 1.8rem;
}

.trade-tiles {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.trade-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	width: 140px;
	padding: 1.2rem 1rem;
	border-radius: 8px;
	border: 2px solid transparent;
	text-decoration: none;
	transition: all 0.2s ease;
}

.trade-tile--active {
	background: #f0f4fa;
	border-color: #7b2d3e;
	color: #7b2d3e;
}

.trade-tile--active:hover {
	background: #7b2d3e;
	color: #fff;
}

.trade-tile--active:hover svg {
	stroke: #fff;
}

.trade-tile--soon {
	background: #f7f7f7;
	border-color: #ddd;
	color: #999;
	cursor: default;
}

.trade-tile__label {
	font-size: 0.9rem;
	font-weight: 700;
}

.trade-tile__count {
	font-size: 0.75rem;
	color: #c9922a;
	font-weight: 600;
}

.trade-tile__soon-badge {
	font-size: 0.7rem;
	background: #e0e0e0;
	color: #888;
	border-radius: 10px;
	padding: 2px 8px;
	font-weight: 600;
}

/* ── MAIN HEADING ── */
.main__heading {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 2rem 0 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 3px solid #c9922a;
	color: #7b2d3e;
}

/* ── ARTICLE LIST THUMBNAILS ── */
.post__thumbnail img {
	border-radius: 4px;
}

/* ── SIDEBAR ── */
.widget__title {
	border-bottom-color: #c9922a !important;
}

/* ── INLINE CTAs (in article body) ── */
.btn, a.btn {
	display: inline-block;
	padding: 0.65rem 1.5rem;
	background-color: #c9922a;
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	transition: background-color 0.2s ease;
}

.btn:hover, a.btn:hover {
	background-color: #d4a43a;
	color: #fff;
}

/* ── HOMEPAGE SECTIONS ── */

/* Generic section wrapper */
.hp-section {
	padding: 3.5rem 1.5rem;
	background: #f9f8f6;
}

.hp-section--alt {
	background: #f5ede4; /* TWEAK: warm peach tint — was #fff — rollback: change back to #fff */
	border-top: 1px solid #e8e4de;
	border-bottom: 1px solid #e8e4de;
}

.hp-section__inner {
	max-width: 1020px;
	margin: 0 auto;
}

.hp-section__header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.hp-section__title {
	font-size: 1.7rem;
	font-weight: 800;
	color: #7b2d3e;
	margin: 0 0 0.5rem;
	letter-spacing: -0.018em; /* TWEAK: tighten section headings — rollback: remove this line */
}

.hp-section__sub {
	font-size: 1rem;
	color: #666;
	margin: 0;
}

/* ── HOW IT WORKS — 3 steps ── */
.hp-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.hp-step {
	text-align: center;
	padding: 1.5rem;
}

.hp-step__num {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #7b2d3e;
	color: #fff;
	font-size: 1.3rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	box-shadow: 0 0 0 4px rgba(196,84,0,0.12); /* TWEAK: copper glow halo — rollback: remove this line */
}

.hp-step__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #7b2d3e;
	margin: 0 0 0.5rem;
}

.hp-step__text {
	font-size: 0.92rem;
	color: #555;
	line-height: 1.6;
	margin: 0;
}

/* ── TRADE CARDS ── */
.trade-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.trade-card {
	background: #fff;
	border: 2px solid #e0ddd8;
	border-radius: 10px;
	padding: 1.5rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	transition: all 0.2s ease;
	text-decoration: none;
}

.trade-card--active {
	border-color: #7b2d3e;
	color: inherit;
}

.trade-card--active:hover {
	border-color: #c9922a;
	box-shadow: 0 4px 18px rgba(196, 84, 0, 0.12);
	transform: translateY(-2px);
}

.trade-card--soon {
	opacity: 0.65;
	cursor: default;
}

.trade-card__icon {
	color: #7b2d3e;
	line-height: 0;
	margin-bottom: 0.3rem;
}

.trade-card--soon .trade-card__icon {
	color: #999;
}

.trade-card__title {
	font-size: 1rem;
	font-weight: 700;
	color: #7b2d3e;
	margin: 0;
}

.trade-card--soon .trade-card__title {
	color: #888;
}

.trade-card__desc {
	font-size: 0.85rem;
	color: #666;
	line-height: 1.55;
	margin: 0;
	flex: 1;
}

.trade-card__link {
	font-size: 0.85rem;
	font-weight: 700;
	color: #c9922a;
	margin-top: 0.25rem;
}

.trade-card__soon {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	background: #ececec;
	color: #888;
	border-radius: 20px;
	padding: 3px 10px;
	align-self: flex-start;
	margin-top: 0.25rem;
}

/* ── WHY TRUST US — feature section ── */
.hp-feature {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 3.5rem;
	align-items: start;
}

.hp-feature__label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	color: #c9922a;
	margin-bottom: 0.75rem;
}

.hp-feature__title {
	font-size: 1.6rem;
	font-weight: 800;
	color: #7b2d3e;
	line-height: 1.25;
	margin: 0 0 1rem;
}

.hp-feature__text p {
	font-size: 0.97rem;
	color: #444;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.hp-feature__list {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0 1.5rem;
}

.hp-feature__list li {
	padding: 0.3rem 0 0.3rem 1.4rem;
	position: relative;
	font-size: 0.92rem;
	color: #333;
}

.hp-feature__list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #c9922a;
	font-weight: 700;
}

.hp-feature__cta {
	display: inline-block;
	font-weight: 700;
	color: #c9922a;
	text-decoration: none;
	font-size: 0.95rem;
	border-bottom: 2px solid rgba(196, 84, 0, 0.3);
	padding-bottom: 2px;
	transition: border-color 0.2s;
}

.hp-feature__cta:hover {
	border-color: #c9922a;
	color: #c9922a;
}

/* Stat cards in feature aside */
.hp-feature__aside {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hp-stat-card {
	background: #fff; /* TWEAK: was #f9f8f6 — white pops better against new #f5ede4 alt bg — rollback: change to #f9f8f6 */
	border-left: 4px solid #c9922a;
	border-radius: 0 8px 8px 0;
	padding: 1.1rem 1.25rem;
	box-shadow: 0 1px 4px rgba(0,0,0,0.06); /* TWEAK: subtle lift for stat cards — rollback: remove this line */
}

.hp-stat-card__num {
	font-size: 2rem;
	font-weight: 800;
	color: #7b2d3e;
	line-height: 1;
	margin-bottom: 0.3rem;
	letter-spacing: -0.03em; /* TWEAK: tighten stat numbers — rollback: remove this line */
}

.hp-stat-card__label {
	font-size: 0.88rem;
	color: #444;
	line-height: 1.45;
}

.hp-stat-card__source {
	font-size: 0.72rem;
	color: #999;
	margin-top: 0.4rem;
}

/* ── HOW WE'RE DIFFERENT — 3 cards ── */
.hp-diff-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.hp-diff-card {
	background: #fff;
	border: 1px solid #e8e4de;
	border-top: 3px solid #c9922a;
	border-radius: 0 0 8px 8px;
	padding: 1.5rem 1.4rem;
}

.hp-diff-card__icon {
	margin-bottom: 0.9rem;
	line-height: 0;
}

.hp-diff-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #7b2d3e;
	margin: 0 0 0.5rem;
}

.hp-diff-card__text {
	font-size: 0.9rem;
	color: #555;
	line-height: 1.6;
	margin: 0;
}

/* ── BEFORE YOU HIRE — navy panel ── */
.hp-hire-panel {
	background: #7b2d3e;
	padding: 3rem 1.5rem;
}

.hp-hire-panel__inner {
	max-width: 780px;
	margin: 0 auto;
}

.hp-hire-panel__text {
	margin-bottom: 1.5rem;
}

.hp-hire-panel__title {
	font-size: 1.55rem;
	font-weight: 800;
	color: #fff;
	margin: 0 0 0.4rem;
	letter-spacing: -0.018em;
}

.hp-hire-panel__sub {
	font-size: 0.97rem;
	color: rgba(255,255,255,0.7);
	margin: 0;
}

.hp-hire-panel__list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.hp-hire-panel__list li {
	padding-left: 1.5rem;
	position: relative;
	font-size: 0.95rem;
	color: rgba(255,255,255,0.88);
	line-height: 1.55;
}

.hp-hire-panel__list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #c9922a;
	font-weight: 700;
}

.hp-hire-panel__cta {
	display: inline-block;
	background: #c9922a;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	padding: 0.85rem 2rem;
	border-radius: 8px;
	transition: background-color 0.2s ease;
}

.hp-hire-panel__cta:hover {
	background: #d4a43a;
	color: #fff;
}

@media (max-width: 900px) {
	.hp-diff-cards {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

/* ── HOMEPAGE POSTS — full width ── */
.hp-posts {
	background: #f9f8f6;
	padding: 2.5rem 1.5rem 3rem;
}

.hp-posts__inner {
	max-width: 780px;
	margin: 0 auto;
}

/* ── RESPONSIVE — homepage ── */
@media (max-width: 900px) {
	.hp-steps {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.hp-step {
		text-align: center;
		padding: 1rem 0;
		max-width: 600px;
		margin-left: auto;
		margin-right: auto;
	}

	.hp-step__num {
		margin: 0 auto 1rem;
	}

	.trade-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.hp-feature {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.hp-feature__aside {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.hp-stat-card {
		flex: 1 1 200px;
	}

}

@media (max-width: 600px) {
	.trade-cards {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 425px) {
	.trade-cards {
		grid-template-columns: 1fr;
	}

	.hp-section {
		padding: 2.5rem 1rem;
	}

	.hp-content-row {
		padding: 2rem 1rem;
	}
}

/* ── HOMEPAGE VIDEOS ── */

.hp-video-section {
	background: #1c0e12;
	padding: 0;
	line-height: 0;
}

.hp-video-section--alt {
	background: #f9f8f6;
	padding: 3rem 1.5rem;
	line-height: normal;
}

.hp-video-section__inner {
	max-width: 1020px;
	margin: 0 auto;
}

.hp-video-section__inner--split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.hp-video-block--wide {
	width: 100%;
}

.hp-video {
	width: 100%;
	display: block;
	border-radius: 0;
	max-height: 420px;
	object-fit: cover;
}

.hp-video-block .hp-video {
	border-radius: 10px;
	max-height: 340px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.hp-video-split__title {
	font-size: 1.55rem;
	font-weight: 800;
	color: #7b2d3e;
	margin: 0 0 0.75rem;
	line-height: 1.25;
}

.hp-video-split__body {
	font-size: 0.97rem;
	color: #444;
	line-height: 1.7;
	margin: 0 0 1.25rem;
}

@media (max-width: 768px) {
	.hp-video-section__inner--split {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.hp-video-block .hp-video {
		max-height: 260px;
	}
	.hp-video--wide {
		max-height: 280px;
	}
}

/* ── NAV HOVER UNDERLINE ── */
/* TWEAK: copper animated underline on nav — rollback: remove this entire block */
.menu__link {
	position: relative;
	text-decoration: none;
}

.menu__link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background-color: #c9922a;
	transition: width 0.2s ease;
}

.menu__link:hover::after,
.menu__item--active .menu__link::after {
	width: 100%;
}
/* END TWEAK */

/* ── BLOG SIDEBAR WIDGETS ── */

/* CTA widget — navy */
.widget--cta {
	background: #7b2d3e !important;
	border: none !important;
	border-radius: 8px;
	padding: 1.25rem 1.3rem !important;
}

.widget__title--cta {
	color: #fff !important;
	border-bottom-color: rgba(196, 84, 0, 0.4) !important;
}

.widget__cta-text {
	font-size: 0.87rem;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.55;
	margin: 0 0 1rem;
}

.widget__cta-btn {
	display: block;
	text-align: center;
	background: #c9922a;
	color: #fff !important;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9rem;
	padding: 0.7rem 1rem;
	border-radius: 8px;
	transition: background-color 0.2s;
	margin-bottom: 0.85rem;
}

.widget__cta-btn:hover {
	background: #d4a43a;
	color: #fff !important;
}

.widget__cta-trust {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.widget__cta-trust li {
	font-size: 0.77rem;
	color: rgba(255, 255, 255, 0.65);
}

/* Trades widget */
.widget--trades .widget__title {
	color: #7b2d3e;
}

.widget__trade-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}

.widget__trade-item {
	font-size: 0.88rem;
	border-bottom: 1px solid #f0ede8;
}

.widget__trade-item:last-child {
	border-bottom: none;
}

.widget__trade-item a {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #7b2d3e;
	text-decoration: none;
	font-weight: 600;
	padding: 7px 0;
}

.widget__trade-item a:hover {
	color: #c9922a;
}

.widget__trade-item a span {
	margin-left: auto;
	font-size: 0.72rem;
	color: #c9922a;
	font-weight: 700;
}

.widget__trade-item--soon {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #bbb;
	padding: 7px 0;
	font-weight: 600;
}

.widget__trade-item--soon svg {
	color: #ccc;
	flex-shrink: 0;
}

.widget__trade-item--soon span {
	margin-left: auto;
	font-size: 0.72rem;
	color: #ccc;
}

/* ── FOOTER ── */
/* TWEAK: warm footer — rollback: remove this entire block */
.footer {
	background: #3d1520;
	border-top: 2px solid rgba(196, 84, 0, 0.25);
	color: rgba(255,255,255,0.7);
}

.footer a {
	color: rgba(255,255,255,0.6);
}

.footer a:hover {
	color: #c9922a;
}
/* END TWEAK */

/* ── FIND A PLUMBER PAGE ── */
.find-plumber-form {
	background: #fff;
	border: 2px solid #7b2d3e;
	border-radius: 8px;
	padding: 2rem;
	margin: 2rem 0;
}

.find-plumber-form h3 {
	color: #7b2d3e;
	margin: 0 0 0.5rem;
	font-size: 1.3rem;
}

.find-plumber-form input[type="text"],
.find-plumber-form input[type="email"],
.find-plumber-form select,
.find-plumber-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	margin-bottom: 0.75rem;
	outline: none;
	font-family: inherit;
}

.find-plumber-form input:focus,
.find-plumber-form select:focus,
.find-plumber-form textarea:focus {
	border-color: #7b2d3e;
	box-shadow: 0 0 0 2px rgba(26, 54, 93, 0.18);
}

.find-plumber-form__btn {
	width: 100%;
	padding: 0.9rem;
	background-color: #c9922a;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.find-plumber-form__btn:hover {
	background-color: #d4a43a;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
	.hero__title {
		font-size: 1.9rem;
	}

	.hero__tagline {
		font-size: 1rem;
	}

	.hero--candlecrafting {
		min-height: 320px;
		background-position: center 35%;
	}

	.hero--candlecrafting .hero__inner {
		padding: 3rem 1rem 2.5rem;
	}

	.trust-strip__inner {
		gap: 0.75rem 1.5rem;
		justify-content: center;
	}

	.trade-tile {
		width: 120px;
		padding: 1rem 0.75rem;
	}

	/* Hire panel — reduce padding and font size on tablet */
	.hp-hire-panel {
		padding: 2.5rem 1.25rem;
	}

	.hp-hire-panel__title {
		font-size: 1.3rem;
	}

	/* Diff cards — single column on tablet */
	.hp-diff-cards {
		grid-template-columns: 1fr;
	}

	/* Feature section — reduce gap */
	.hp-feature__title {
		font-size: 1.35rem;
	}
}

@media (max-width: 480px) {
	.hero__title {
		font-size: 1.55rem;
	}

	.hero__actions {
		flex-direction: column;
		align-items: center;
	}

	.hero__cta {
		width: 100%;
		max-width: 280px;
		text-align: center;
	}

	.trust-strip__inner {
		gap: 0.6rem 1rem;
	}

	.trust-strip__item {
		font-size: 0.8rem;
	}

	.trade-tiles {
		gap: 0.75rem;
	}

	.trade-tile {
		width: 100px;
		padding: 0.85rem 0.5rem;
	}

	.trade-tile__label {
		font-size: 0.8rem;
	}

	/* Hire panel — full width CTA button on small screens */
	.hp-hire-panel {
		padding: 2rem 1rem;
	}

	.hp-hire-panel__title {
		font-size: 1.2rem;
	}

	.hp-hire-panel__cta {
		display: block;
		text-align: center;
	}

	/* Section padding reduction */
	.hp-section {
		padding: 2rem 1rem;
	}

	/* Stat cards stack properly on small screens */
	.hp-feature__aside {
		flex-direction: column;
	}

	.hp-stat-card {
		flex: none;
	}
}
