/* Krooswyk theme. Mobile-first. Breakpoints (min-width): 390 / 768 / 1024 / 1440 (+1280 nav). See STYLE-GUIDE.md. */

/* ---------- Fonts (self-hosted) ---------- */
@font-face { font-family: "Barlow Condensed"; font-weight: 700; font-style: normal; font-display: swap; src: url("../fonts/barlow-condensed-700.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-weight: 600; font-style: normal; font-display: swap; src: url("../fonts/barlow-condensed-600.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 400; font-style: normal; font-display: swap; src: url("../fonts/barlow-400.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 500; font-style: normal; font-display: swap; src: url("../fonts/barlow-500.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 600; font-style: normal; font-display: swap; src: url("../fonts/barlow-600.woff2") format("woff2"); }

/* ---------- Tokens ---------- */
:root {
	--krw-red: #C80D0E;
	--krw-red-deep: #A50F0F;
	--krw-ink: #141414;
	--krw-muted: #5A5650;
	--krw-stone: #EDEBE7;
	--krw-stone-2: #F4F2EE;
	--krw-line: #D9D5CE;
	--krw-white: #FFFFFF;
	--krw-charcoal: #1F2023;
	--krw-footer-text: #C9C6C0;
	--krw-snow: #E6EEF6;
	--ok: #1E7B34;
	--err: #B00020;

	--font-display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
	--font-body: "Barlow", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

	--fs-h1: clamp(2.5rem, 1.6rem + 4vw, 4.5rem);
	--fs-h2: clamp(2rem, 1.5rem + 2.2vw, 3.25rem);
	--fs-h3: clamp(1.35rem, 1.2rem + .6vw, 1.75rem);
	--fs-body: clamp(1rem, .95rem + .25vw, 1.125rem);
	--fs-lead: clamp(1.0625rem, 1rem + .4vw, 1.3rem);
	--fs-small: .9375rem;

	--s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;
	--section-y: clamp(48px, 7vw, 96px);
	--gap: clamp(16px, 2vw, 24px);
	--card-pad: clamp(20px, 3vw, 40px);
	--r-sm: 6px; --r-md: 12px; --r-lg: 16px;
	--shadow: 0 6px 24px rgba(20, 20, 20, .08);
	--header-h: 72px;
	--ink-2: #3D3A36;
	--cta-bar-h: 64px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); scroll-padding-bottom: calc(var(--cta-bar-h) + 16px); }
body {
	margin: 0; background: var(--krw-white); color: var(--krw-ink);
	font-family: var(--font-body); font-size: var(--fs-body); line-height: 1.55;
	-webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
	overflow-x: clip;
	/* Room for the fixed mobile CTA bar from first paint: no layout shift, nothing covered. */
	padding-bottom: calc(var(--cta-bar-h) + env(safe-area-inset-bottom, 0px));
}
img, svg, video, iframe { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; margin: 0 0 var(--s-4); letter-spacing: .005em; text-wrap: balance; }
p { margin: 0 0 var(--s-4); }
ul, ol { margin: 0; padding: 0; }
[role="list"] { list-style: none; }
a { color: var(--krw-red); text-underline-offset: .18em; }
a:hover { color: var(--krw-red-deep); }
strong { font-weight: 600; }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible { outline: 3px solid var(--krw-ink); outline-offset: 2px; border-radius: 2px; }
.hero :focus-visible, .trust :focus-visible, .final :focus-visible, .site-footer :focus-visible, .mobile-cta :focus-visible { outline-color: #fff; }

.visually-hidden { 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: 12px; top: -80px; z-index: 1000; background: var(--krw-ink); color: #fff; padding: 12px 18px; border-radius: var(--r-sm); font-weight: 600; text-decoration: none; }
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Layout foundation ---------- */
.container { width: 100%; max-width: 1416px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 48px); }
.section { padding-block: var(--section-y); }
.section--stone { background: var(--krw-stone); }
.grid { display: grid; gap: var(--gap); }
.grid-2, .grid-3, .grid-4 { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.h2 { font-size: var(--fs-h2); }
.h2--caps { text-transform: uppercase; letter-spacing: 0; }
.h3 { font-size: var(--fs-h3); }
.lead { font-size: var(--fs-lead); color: var(--krw-muted); }
.small { font-size: var(--fs-small); }
.muted { color: var(--krw-muted); }
.eyebrow { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: clamp(.95rem, .9rem + .2vw, 1.125rem); margin-bottom: var(--s-3); }
.eyebrow--red { color: var(--krw-red); }
.section-head { margin-bottom: clamp(24px, 3.5vw, 40px); }
.section-head--center { text-align: center; }
.section-head .lead { margin: 0; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 48px; padding: 10px 26px; border-radius: var(--r-sm); border: 2px solid transparent;
	font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; line-height: 1.1; letter-spacing: .01em;
	text-decoration: none; cursor: pointer; transition: background-color .15s ease, color .15s ease, border-color .15s ease;
	text-align: center;
}
.btn--lg { min-height: 56px; padding-inline: 30px; font-size: 1.3rem; }
.btn--xl { min-height: 64px; padding-inline: 34px; font-size: clamp(1.35rem, 1.2rem + .5vw, 1.65rem); }
.btn--white { background: #fff; color: var(--krw-red); }
.btn--white:hover { background: var(--krw-stone); color: var(--krw-red-deep); }
.btn--block { width: 100%; }
.btn--primary { background: var(--krw-red); color: #fff; }
.btn--primary:hover { background: var(--krw-red-deep); color: #fff; }
.btn--ghost-light { border-color: #fff; color: #fff; background: transparent; }
.btn--ghost-light:hover { background: #fff; color: var(--krw-ink); }
.btn--outline { border-color: var(--krw-ink); color: var(--krw-ink); background: #fff; }
.btn--outline:hover { background: var(--krw-ink); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-4); align-items: center; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; font-weight: 600; color: var(--krw-ink); text-decoration: underline; text-decoration-thickness: 2px; }
.link-arrow .icon { color: var(--krw-red); transition: transform .15s ease; }
.link-arrow:hover { color: var(--krw-red-deep); }
.link-arrow:hover .icon { transform: translateX(3px); }
.link-arrow--light, .link-arrow--light .icon { color: #fff; }
.link-arrow--light:hover { color: #fff; }
.link-phone { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--krw-ink); }
.link-phone .icon { color: var(--krw-red); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--krw-line); }
.admin-bar .site-header { top: 32px; }
.site-header__bar { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); min-height: var(--header-h); }
.site-header__logo { display: block; flex: 0 0 auto; }
.site-header__logo img { height: 44px; width: auto; }
.site-header__actions { display: flex; align-items: center; gap: var(--s-3); }
.header-phone { display: none; align-items: center; gap: 8px; min-height: 44px; font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--krw-red); text-decoration: none; white-space: nowrap; }
.header-phone:hover { color: var(--krw-red-deep); text-decoration: underline; }
.header-quote { display: none; white-space: nowrap; }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border: 0; border-radius: var(--r-sm); background: var(--krw-stone); color: var(--krw-ink); cursor: pointer; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: inline; }
.nav-toggle span { line-height: 0; }

/* Mobile/tablet nav panel */
.site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--krw-line); box-shadow: 0 16px 32px rgba(20,20,20,.12); padding: var(--s-3) clamp(16px, 4vw, 48px) var(--s-5); max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
.site-nav.is-open { display: block; }
.site-nav__list { list-style: none; }
.site-nav__list a { display: flex; align-items: center; min-height: 48px; padding: 4px 0; border-bottom: 1px solid var(--krw-stone); font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--krw-ink); text-decoration: none; }
.site-nav__list a:hover { color: var(--krw-red); }
.site-nav__mobile-cta { display: grid; gap: var(--s-3); margin-top: var(--s-5); }

@media (min-width: 768px) {
	:root { --header-h: 88px; }
	.header-quote { padding: 12px 22px; }
	.site-header__logo img { height: 52px; }
	.header-quote { display: inline-flex; }
	.header-phone { display: inline-flex; }
}
@media (min-width: 1280px) {
	.site-header__logo img { height: 56px; }
	.nav-toggle { display: none; }
	.site-nav { display: block; position: static; padding: 0; border: 0; box-shadow: none; background: none; max-height: none; overflow: visible; flex: 1 1 auto; }
	.site-nav__list { display: flex; justify-content: center; gap: clamp(12px, 1.4vw, 24px); }
	.site-nav__list a { border: 0; min-height: 44px; font-size: 1.18rem; font-weight: 700; white-space: nowrap; }
	.site-nav__mobile-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--krw-charcoal); color: #fff; overflow: hidden; }
.hero__media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: 58% 48%; }
.hero__inner { position: relative; z-index: 2; padding-block: clamp(20px, 5vw, 48px) clamp(28px, 6vw, 56px); }
.hero__copy { max-width: 600px; }
.hero__eyebrow { color: #fff; }
.hero__eyebrow span { margin-inline: .5em; }
.hero__title { font-size: var(--fs-h1); color: #fff; margin-bottom: var(--s-5); }
.hero__lead { font-size: var(--fs-lead); color: #fff; line-height: 1.5; margin-bottom: var(--s-5); max-width: 34em; }
@media (min-width: 768px) { .hero__lead { margin-bottom: var(--s-6); } }
.hero .btn-row { margin-bottom: var(--s-3); gap: var(--s-3); }
.hero .btn-row .btn { width: 100%; }
@media (min-width: 560px) { .hero .btn-row .btn { width: auto; } }
@media (min-width: 768px) {
	.hero__media img { aspect-ratio: 16 / 9; }
}
@media (min-width: 1024px) {
	.hero { min-height: clamp(540px, 41vw, 600px); display: flex; align-items: center; }
	/* Real photo on the right 58% (the source is 1920x1715, near square, so full bleed would crop it to a thin band
	   and put the H1 over the carved company name). The left edge feathers into the charcoal panel: no seam, and
	   the text always sits on the solid panel (contrast measured by build/contrast-hero.py). */
	.hero__media { position: absolute; top: 0; right: 0; bottom: 0; width: 58%; }
	.hero__media img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; object-position: 50% 42%; }
	.hero__media::after { content: ""; position: absolute; inset: 0; pointer-events: none;
		background: linear-gradient(90deg, var(--krw-charcoal) 0%, rgba(31,32,35,.55) 14%, rgba(31,32,35,0) 34%); }
	.hero__inner { width: 100%; padding-block: 56px; }
	.hero__copy { max-width: 640px; }
	.hero__eyebrow, .hero .btn-row, .hero .link-arrow { max-width: 480px; }
	.hero__lead { max-width: 460px; }
	.hero__title { font-size: clamp(3.25rem, 1.8rem + 2.6vw, 4.5rem); line-height: 1.0; }
	.hero .btn-row { flex-wrap: nowrap; }
	.hero .btn-row .btn { min-height: 58px; font-size: 1.3rem; padding-inline: 24px; white-space: nowrap; }
}
@media (min-width: 1280px) {
	.hero .btn-row .btn { min-height: 60px; font-size: 1.4rem; padding-inline: 30px; }
}

/* ---------- Trust bar ---------- */
.trust { background: var(--krw-red); color: #fff; padding-block: clamp(22px, 2.4vw, 34px); }
.trust__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 16px; }
.trust__list li { display: flex; align-items: center; gap: 14px; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.1rem, .95rem + .5vw, 1.3rem); line-height: 1.15; }
.trust__list .icon { flex: 0 0 auto; width: 36px; height: 36px; }
.trust__list li:last-child { grid-column: 1 / -1; justify-content: center; }
@media (min-width: 768px) {
	.trust__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.trust__list li:last-child { grid-column: auto; justify-content: flex-start; }
	.trust__list .icon { width: 44px; height: 44px; }
	.trust__list li { font-size: 1.3rem; }
}
@media (min-width: 1024px) {
	.trust__list { grid-template-columns: repeat(5, auto); justify-content: space-between; }
}
@media (min-width: 1280px) {
	.trust__list li { font-size: 1.375rem; }
	.trust__list .icon { width: 48px; height: 48px; }
}

/* ---------- Material tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(10px, 1.4vw, 18px); }
@media (min-width: 1024px) { .tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.tile { position: relative; display: block; border-radius: var(--r-md); overflow: hidden; background: var(--krw-stone); text-decoration: none; isolation: isolate; }
.tile__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s ease; }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.34) 100%); pointer-events: none; }
.tile:hover .tile__img { transform: scale(1.04); }
.tile__label {
	position: absolute; left: 50%; bottom: clamp(10px, 1.6vw, 18px); transform: translateX(-50%);
	z-index: 1; width: max-content; min-width: min(70%, calc(100% - 16px)); max-width: calc(100% - 16px); margin: 0; padding: 8px 12px; border-radius: var(--r-sm);
	background: #fff; color: var(--krw-ink); text-align: center; text-wrap: balance;
	font-size: clamp(.95rem, .82rem + .6vw, 1.45rem); font-weight: 700; line-height: 1.1;
	box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.tile:hover .tile__label { color: var(--krw-red); }
@media (min-width: 1024px) { .tile__label { padding: 10px 24px; } }
.materials__note { text-align: center; margin: clamp(20px, 3vw, 32px) 0 0; color: var(--ink-2); }
.materials__note a { display: inline-flex; align-items: center; min-height: 44px; font-weight: 600; }

/* ---------- How to buy ---------- */
.steps { display: grid; gap: 40px; grid-template-columns: 1fr; }
.step { text-align: center; padding-inline: var(--s-4); }
.step__art { display: flex; align-items: center; justify-content: center; gap: var(--s-5); margin-bottom: var(--s-4); min-height: 100px; }
.step__num { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--krw-red); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 2rem; flex: 0 0 auto; }
.step__icon { color: var(--krw-ink); width: clamp(92px, 8vw, 118px); height: clamp(92px, 8vw, 118px); }
.step .h3 { font-size: clamp(1.4rem, 1.2rem + .6vw, 1.75rem); }
.step p { max-width: 30ch; margin-inline: auto; color: #1a1a1a; font-size: 1.125rem; line-height: 1.5; }
.how__cta { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: var(--s-3) var(--s-6); margin-top: clamp(28px, 4vw, 44px); }
@media (min-width: 768px) {
	.steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
	.step + .step { border-left: 1px solid #C9C4BB; }
}

/* ---------- Pickup + delivery ---------- */
.pickup { background: #fff; }
.pickup__panel { display: grid; background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 8px 30px rgba(20,20,20,.12); border: 1px solid var(--krw-line); }
.pickup__ctas .btn { min-height: 58px; font-size: 1.4rem; }
@media (max-width: 559px) { .pickup__ctas .btn { width: 100%; } }
.pickup__media { background: var(--krw-charcoal); }
.pickup__img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 35% 50%; }
@media (min-width: 768px) { .pickup__img { aspect-ratio: 16 / 9; } }
.pickup__copy { padding: var(--card-pad); align-self: center; }
.pickup__copy .lead { color: var(--krw-ink); }
.pickup__copy .h2 { font-size: clamp(2rem, 1.5rem + 1.8vw, 3.25rem); }
.pickup__copy .lead { font-size: clamp(1.1rem, 1rem + .4vw, 1.25rem); }
.pickup__copy .muted { color: #444; }
.checks { list-style: none; display: grid; gap: var(--s-3); margin-bottom: var(--s-4); }
.checks li { display: flex; gap: 10px; align-items: flex-start; }
.checks .icon { color: var(--krw-red); flex: 0 0 auto; margin-top: 3px; }
@media (min-width: 1024px) {
	.pickup__panel { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
	.pickup__img { aspect-ratio: 16 / 10; min-height: 100%; object-position: 35% 55%; }
	.pickup__copy { padding: clamp(28px, 3.4vw, 48px); }
}

/* ---------- Natural stone + pavers ---------- */
.stone-pavers { padding-top: 0; }
.feature__copy { display: flex; flex-direction: column; }
.feature__copy .link-arrow { margin-top: auto; }
.feature .dots { margin-bottom: var(--s-4); }
.section--stone + .stone-pavers { padding-top: var(--section-y); }
.feature-grid { display: grid; gap: var(--gap); }
.feature { display: grid; background: var(--krw-stone); border-radius: var(--r-lg); overflow: hidden; }
.feature__copy { padding: clamp(20px, 2.6vw, 36px); }
.feature__title { font-size: clamp(1.8rem, 1.4rem + 1vw, 2.3rem); }
@media (min-width: 1280px) { .feature__title { font-size: 2.05rem; } .feature__copy { padding: 30px 26px; } }
.feature .link-arrow { color: var(--krw-red); text-decoration-color: var(--krw-red); }
.feature__media { order: -1; }
.feature__media img { width: 100%; height: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: 50% 30%; }
.dots { list-style: none; display: grid; gap: 4px; margin-bottom: var(--s-5); font-size: 1.125rem; line-height: 1.45; }
.dots li { position: relative; padding-left: 22px; }
.dots li::before { content: ""; position: absolute; left: 2px; top: .6em; width: 7px; height: 7px; border-radius: 50%; background: var(--krw-red); }
@media (min-width: 768px) {
	.feature { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
	.feature__media { order: 0; }
	.feature__media img { aspect-ratio: auto; min-height: 100%; }
}
@media (min-width: 1280px) {
	.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.feature { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr); }
}

/* ---------- History ---------- */
.history__title { margin-bottom: 0; }
@media (min-width: 1024px) { .history__title { text-align: center; } }
.history__grid { display: grid; gap: var(--s-6); align-items: center; }
.history__media { border-radius: var(--r-md); overflow: hidden; background: #ddd; max-width: 520px; }
.history__img { width: 100%; aspect-ratio: 604 / 282; object-fit: cover; object-position: 40% 50%; filter: grayscale(1); }
.timeline { list-style: none; display: grid; gap: var(--s-5); margin: var(--s-5) 0 var(--s-5); position: relative; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--krw-red); }
.timeline li { position: relative; display: grid; gap: 2px; }
.timeline__dot { position: absolute; left: -28px; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: var(--krw-red); }
.timeline__year { font-family: var(--font-display); font-weight: 700; font-size: 1.75rem; line-height: 1; color: var(--krw-red); }
.timeline__text { color: #1a1a1a; }
@media (min-width: 1024px) {
	.timeline { grid-template-columns: repeat(5, minmax(0, 1fr)); padding-left: 0; gap: 0 var(--s-3); margin-block: var(--s-6); }
	.timeline::before { left: 10%; right: 10%; top: 49px; bottom: auto; width: auto; height: 2px; }
	.timeline li { text-align: center; justify-items: center; align-content: start; gap: 0; }
	.timeline__year { order: 1; margin-bottom: 14px; }
	.timeline__dot { position: static; order: 2; width: 22px; height: 22px; margin-bottom: 16px; }
	.timeline__text { order: 3; font-size: 1.1rem; line-height: 1.4; }
	.history__media { justify-self: center; max-width: 720px; }
}
@media (min-width: 1280px) {
	.history__grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(28px, 3vw, 48px); }
	.history__media { justify-self: stretch; max-width: none; }
}

/* ---------- Trucking + excavating ---------- */
.services__grid { display: grid; gap: var(--gap); }
.svc-card { display: grid; background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.svc-card__copy { position: relative; z-index: 1; padding: var(--card-pad); display: flex; flex-direction: column; }
.svc-card__copy p { margin-bottom: var(--s-2); }
.svc-card__title { font-size: clamp(2rem, 1.6rem + 1.4vw, 2.9rem); margin-bottom: var(--s-3); }
.svc-card__actions .btn { white-space: nowrap; padding-inline: 22px; }
.svc-card__actions { padding-top: var(--s-4); display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5); align-items: center; }
.svc-card__media { order: -1; position: relative; background: var(--krw-stone); }
.svc-card__img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
@media (min-width: 768px) {
	.svc-card { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); min-height: 300px; }
	.svc-card__media { order: 0; min-height: 100%; }
	.svc-card__img { position: absolute; inset: 0; height: 100%; aspect-ratio: auto; }
	/* White-to-transparent fade from the copy into the photo, as in the comp. */
	.svc-card__media::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 15%; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.7) 35%, rgba(255,255,255,0) 100%); z-index: 1; pointer-events: none; }
	.svc-card__copy { justify-content: flex-start; padding: 36px var(--s-3) 32px clamp(24px, 2.6vw, 40px); }
}
@media (min-width: 1024px) {
	.services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.svc-card--trucking .svc-card__img { object-position: 75% 55%; }
	.svc-card--excavating .svc-card__img { object-position: 55% 55%; }
}

/* ---------- Salt (seasonal) ---------- */
.salt { position: relative; padding-block: clamp(48px, 7vw, 104px); background-color: var(--krw-snow);
	background-image: linear-gradient(rgba(255,255,255,.12), rgba(255,255,255,.12)), url("../images/bg-snow-960.webp");
	background-size: cover; background-position: center 60%; }
@media (min-width: 768px) { .salt { background-image: linear-gradient(rgba(255,255,255,.06), rgba(255,255,255,.06)), url("../images/bg-snow-1920.webp"); } }
.salt__inner { display: grid; gap: var(--s-6); align-items: center; }
.salt__head .h2 { margin: 0; font-size: clamp(2.6rem, 1.7rem + 3vw, 4.25rem); line-height: .95; }
.br-xl { display: none; }
.salt__items { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(12px, 2vw, 24px); min-width: 0; align-items: start; }
.salt__item { display: grid; justify-items: center; align-content: start; gap: var(--s-3); text-align: center; }
.salt__disc { display: block; width: clamp(100px, 26vw, 200px); max-width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 6px solid #1F3F7A; background: #fff; box-shadow: 0 8px 22px rgba(31,63,122,.2); }
.salt__disc img { width: 100%; height: 100%; object-fit: cover; }
.salt__label { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, .95rem + .6vw, 1.3rem); line-height: 1.1; max-width: 12ch; }
.salt__cta { display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5); align-items: center; }
.salt__btn { min-height: 72px; font-size: clamp(1.45rem, 1.2rem + .8vw, 1.65rem); padding: 16px 34px; }
.salt__text { flex-basis: 100%; margin: 0; font-size: .9375rem; line-height: 1.45; color: #1a1a1a; max-width: 44ch; }
@media (min-width: 768px) { .salt__items { max-width: 700px; } }
@media (min-width: 1280px) {
	.br-xl { display: inline; }
	.salt__head .h2 { white-space: nowrap; font-size: clamp(3.4rem, 1rem + 3vw, 3.9rem); }
	.salt__inner { grid-template-columns: max-content minmax(0, 1fr) 260px; gap: clamp(24px, 2.4vw, 40px); }
	.salt__items { max-width: 640px; justify-self: center; gap: 20px; }
	.salt__disc { width: min(196px, 13vw); }
	.salt__cta { flex-direction: column; align-items: stretch; gap: var(--s-3); }
	.salt__btn { line-height: 1.05; padding-block: 20px; }
	.salt__cta .link-arrow { justify-content: center; }
	.salt__text { font-size: .875rem; text-align: center; }
}

/* ---------- Service area ---------- */
.area__grid { display: grid; gap: var(--s-6); align-items: center; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: var(--s-5) 0 var(--s-4); }
.chip { display: inline-flex; align-items: center; gap: 6px; min-height: 48px; padding: 10px 20px; border: 1.5px solid #1a1a1a; border-radius: var(--r-sm); font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--krw-ink); text-decoration: none; background: #fff; }
a.chip:hover { border-color: var(--krw-red); color: var(--krw-red); }
.chip--home { background: var(--krw-red); border-color: var(--krw-red); color: #fff; }
a.chip--home:hover { background: var(--krw-red-deep); color: #fff; }

.area__map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--krw-line); background: var(--krw-stone-2); }
.area__map figcaption { padding: 10px 16px; margin: 0; background: #fff; border-top: 1px solid var(--krw-line); }
.map { width: 100%; height: auto; }
.map__water { font: italic 500 20px var(--font-body); fill: #3E6A96; }
.map__minor { font: 500 15px var(--font-body); fill: #5A5650; }
.map__towns circle { fill: #fff; stroke: #3a3733; stroke-width: 2.5; }
.map__towns text { font: 600 21px var(--font-body); fill: #1f1d1a; }
.map__home-label { font: 700 28px var(--font-display); fill: var(--krw-ink); }
#area-title { font-size: clamp(2rem, 1.4rem + 2vw, 3.1rem); }
@media (min-width: 1024px) { .area__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: var(--s-7); } }

/* ---------- Reviews (sandbox placeholders) ---------- */
.reviews { padding-block: clamp(40px, 5vw, 64px); }
.reviews__panel { border: 1px solid var(--krw-line); border-radius: var(--r-lg); padding: var(--card-pad); text-align: center; }
.reviews__grid { list-style: none; display: grid; gap: var(--gap); margin-top: var(--s-5); }
.review-ph { display: grid; place-items: center; min-height: 170px; padding: 32px; background: var(--krw-stone); border: 1px solid var(--krw-line); border-radius: var(--r-md); }
.review-ph p { margin: 0; font-family: var(--font-body); font-weight: 500; font-size: 1.125rem; letter-spacing: 0; line-height: 1.5; color: #3a3733; }
@media (min-width: 768px) { .reviews__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ---------- FAQ ---------- */
.faq { padding-top: clamp(40px, 5vw, 80px); }
.faq .section-head { margin-bottom: 32px; }
.faq__grid { display: grid; gap: var(--s-4); align-items: start; }
.faq__item { border: 1px solid var(--krw-line); border-radius: var(--r-sm); background: #fff; }
.faq__item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); min-height: 60px; padding: 14px 18px; cursor: pointer; font-family: var(--font-display); font-weight: 500; font-size: 1.0625rem; line-height: 1.2; }
@media (min-width: 1024px) { .faq__item summary { font-size: 1.25rem; font-weight: 500; padding: 22px 26px; min-height: 76px; } .faq__grid { max-width: 1180px; margin-inline: auto; } }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--krw-red); }
.faq__chev { flex: 0 0 auto; transition: transform .2s ease; }
.faq__item[open] .faq__chev { transform: rotate(180deg); color: var(--krw-red); }
.faq__item[open] summary { border-bottom: 1px solid var(--krw-stone); }
.faq__answer { padding: 16px 20px 4px; }
@media (min-width: 1024px) { .faq__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 28px; } }

/* ---------- Final CTA + form ---------- */
.final { background: var(--krw-red); color: #fff; padding-block: var(--section-y); }
.final__grid { display: grid; gap: var(--s-6); grid-template-areas: "head" "form" "aside"; }
.final__head { grid-area: head; }
.final__aside { grid-area: aside; }
.final__form { grid-area: form; }
.final__title { font-size: clamp(2.5rem, 1.5rem + 3.4vw, 4.5rem); line-height: 1; color: #fff; margin-bottom: var(--s-4); }
.final__lead { font-size: var(--fs-lead); max-width: 34em; margin: 0; }
.final__btns { margin: 0 0 var(--s-6); }
.final__btns .btn { width: 100%; }
.final__jump { display: none; }
.final__call-mobile { width: 100%; margin-top: var(--s-5); }
.final__call-desk { display: none !important; }
.final__btns { margin: 0 0 var(--s-5); }
.final__trust { margin: var(--s-5) 0 var(--s-5); font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem); line-height: 1.15; }
.final__info { list-style: none; display: grid; gap: var(--s-4); font-family: var(--font-display); font-weight: 600; font-size: clamp(1.2rem, 1rem + .5vw, 1.4rem); line-height: 1.25; }
.final__info li { display: flex; gap: 12px; align-items: flex-start; }
.final__info .icon { flex: 0 0 auto; }
.final__info a { color: #fff; }
.final__form { background: #fff; color: var(--krw-ink); border-radius: var(--r-lg); padding: var(--card-pad); box-shadow: 0 18px 40px rgba(0,0,0,.18); scroll-margin-top: calc(var(--header-h) + 16px); }
.final__form:focus { outline: none; }
.final__form-title { font-size: clamp(1.8rem, 1.5rem + 1vw, 2.3rem); margin-bottom: var(--s-4); }
.final__form .btn--primary { min-height: 56px; font-size: 1.4rem; }
@media (min-width: 560px) { .final__btns .btn, .final__call-mobile { width: auto; } }
@media (min-width: 1024px) {
	.final__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-areas: "head form" "aside form"; grid-template-rows: 1fr 1fr; column-gap: clamp(40px, 5vw, 80px); row-gap: var(--s-6); }
	.final__jump { display: inline-flex; }
	.final__call-mobile { display: none; }
	.final__call-desk { display: inline-flex !important; }
	.final__head { align-self: end; }
	.final__aside { align-self: start; }
	.final__btns .btn { min-height: 68px; font-size: 1.75rem; }
}

.form-grid { display: grid; gap: var(--s-4); margin-bottom: var(--s-5); }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .field--full { grid-column: 1 / -1; } }
.field { display: grid; gap: 6px; margin: 0; min-width: 0; }
.field label, .field legend { font-weight: 600; font-size: 1rem; }
.field input[type="text"], .field input[type="tel"], .field input[type="email"], .field select, .field textarea {
	width: 100%; min-height: 48px; padding: 10px 14px; border: 1.5px solid #8C867D; border-radius: var(--r-sm); background: #fff; font-size: 1rem;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--krw-ink); outline-offset: 1px; border-color: var(--krw-ink); }
.field--radios { border: 0; padding: 0; }
.field--radios legend { padding: 0; margin-bottom: 6px; }
.radios { display: flex; flex-wrap: wrap; gap: 8px 12px; }
.radio { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 6px 14px; border: 1.5px solid #8C867D; border-radius: var(--r-sm); cursor: pointer; font-weight: 500; }
.radio input { width: 20px; height: 20px; accent-color: var(--krw-red); margin: 0; }
.radio:has(input:checked) { border-color: var(--krw-red); background: #FBEDED; }
.req { color: var(--krw-red); }
.opt { font-weight: 400; color: var(--krw-muted); }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-fine { margin: var(--s-3) 0 0; text-align: center; color: var(--krw-muted); }
.form-notice { display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px; border-radius: var(--r-sm); margin-bottom: var(--s-4); font-weight: 600; }
.form-notice p { margin: 0; }
.form-notice--ok { background: #E7F4EA; color: var(--ok); }
.form-notice--err { background: #FCE8EA; color: var(--err); }

/* ---------- Footer ---------- */
.site-footer { background: var(--krw-charcoal); color: #EAE7E2; padding-block: clamp(40px, 6vw, 72px) var(--s-5); font-size: 1.0625rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #fff; }
.site-footer__grid { display: grid; gap: var(--s-7) var(--s-6); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.site-footer__brand { grid-column: 1 / -1; }
.site-footer__logo { display: inline-block; background: #fff; border-radius: var(--r-md); padding: 14px 18px; margin-bottom: var(--s-4); }
.site-footer__logo img { width: 272px; height: auto; }
.site-footer__name { color: #fff; font-weight: 600; margin-bottom: var(--s-4); }
.nap { list-style: none; display: grid; gap: 10px; }
.nap li { display: flex; gap: 12px; align-items: flex-start; }
.nap .icon { flex: 0 0 auto; margin-top: 3px; color: #fff; }
.site-footer__title { font-size: 1.6rem; text-transform: uppercase; letter-spacing: .02em; color: #fff; margin-bottom: var(--s-3); }
.site-footer__title--gap { margin-top: var(--s-6); }
.site-footer__col ul { list-style: none; display: grid; gap: 2px; }
.site-footer__col ul a { display: inline-flex; align-items: center; min-height: 40px; font-size: 1.15rem; color: #F2F0EC; }
.site-footer .social { display: flex; flex-wrap: nowrap; gap: 10px; }
.site-footer .social a { position: relative; display: grid; place-items: center; width: 48px; height: 48px; min-height: 0; border-radius: 50%; background: var(--krw-red); color: #fff; }
.site-footer .social svg { display: block; width: 24px; height: 24px; }
@media (min-width: 1280px) { .site-footer .social a { width: 56px; height: 56px; } }
@media (min-width: 1024px) and (max-width: 1279px) { .site-footer .social { gap: 8px; } .site-footer .social a { width: 44px; height: 44px; } }
.site-footer .social a:hover { background: var(--krw-red-deep); }
.site-footer__pay { margin-top: var(--s-5); font-size: .9375rem; }
.site-footer__bottom { margin-top: var(--s-5); padding-top: var(--s-4); color: #E0DCD6; border-top: 1px solid #3A3B3F; display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5); justify-content: center; align-items: center; text-align: center; font-size: 1rem; }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom ul { list-style: none; display: flex; gap: var(--s-5); }
.site-footer__bottom a { display: inline-flex; align-items: center; min-height: 44px; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) {
	.site-footer__grid { grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)) minmax(0, 1fr); }
	.site-footer__brand { grid-column: auto; }
}

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
	display: grid; grid-template-columns: 1fr 1.4fr;
	height: calc(var(--cta-bar-h) + env(safe-area-inset-bottom, 0px));
	padding-bottom: env(safe-area-inset-bottom, 0px);
	background: var(--krw-charcoal); box-shadow: 0 -4px 16px rgba(0,0,0,.18);
}
.mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; text-decoration: none; color: #fff; }
.mobile-cta__call { background: var(--krw-charcoal); }
.mobile-cta__quote { background: var(--krw-red); }
.mobile-cta a:hover { color: #fff; filter: brightness(1.08); }
@media (min-width: 768px) {
	.mobile-cta { display: none; }
	body { padding-bottom: 0; }
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { transition: none !important; animation: none !important; }
	.tile:hover .tile__img { transform: none; }
}
