/* ==========================================================================
   Rank & Rent Local Pro — Stucco Edition
   Design direction: a plasterer's spec sheet. Mono technical labels, a lime-sand
   page, deep sage structure, ochre only where we want a thumb to land. The one
   indulgence is the grain overlay — the material's own surface, at 4% opacity.
   ========================================================================== */

:root {
	/* Palette */
	--ink:        #14181A;
	--ink-soft:   #2B3234;
	--sage:       #3E5240;
	--sage-deep:  #2C3B2E;
	--sage-tint:  #EDF0EA;
	--ochre:      #C1802A;
	--ochre-deep: #A66A1C;
	--plaster:    #F6F4EF;
	--sand:       #E6E0D5;
	--sand-deep:  #D3CABA;
	--white:      #FFFFFF;
	--muted:      #5C6360;

	/* Type */
	--display: "Archivo", "Helvetica Neue", Arial, sans-serif;
	--body:    "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--mono:    "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

	/* Scale */
	--step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.88rem);
	--step-0:  clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
	--step-1:  clamp(1.2rem, 1.13rem + 0.35vw, 1.4rem);
	--step-2:  clamp(1.45rem, 1.3rem + 0.7vw, 1.9rem);
	--step-3:  clamp(1.8rem, 1.5rem + 1.4vw, 2.7rem);
	--step-4:  clamp(2.2rem, 1.6rem + 2.6vw, 4rem);

	/* Space */
	--gap: clamp(1rem, 0.8rem + 1vw, 1.75rem);
	--pad-section: clamp(3.5rem, 2.5rem + 4vw, 6.5rem);
	--wrap: 1180px;
	--radius: 3px;

	/* Grain — the stucco surface, generated not downloaded */
	--grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
	margin: 0;
	font-family: var(--body);
	font-size: var(--step-0);
	line-height: 1.65;
	color: var(--ink-soft);
	background: var(--plaster);
	-webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--sage); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--ochre-deep); }
:focus-visible { outline: 3px solid var(--ochre); outline-offset: 2px; }
h1, h2, h3, h4 {
	font-family: var(--display);
	color: var(--ink);
	line-height: 1.1;
	letter-spacing: -0.022em;
	margin: 0 0 .6em;
	font-weight: 700;
	text-wrap: balance;
}
h1 { font-size: var(--step-4); font-weight: 800; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p { margin: 0 0 1.15em; max-width: 68ch; }
ul, ol { margin: 0 0 1.3em; padding-left: 1.15em; }
li { margin-bottom: .45em; max-width: 66ch; }

.skip {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--ink); color: var(--white); padding: .8rem 1.2rem;
}
.skip:focus { left: 0; }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.5rem, 780px); margin-inline: auto; }
.section { padding-block: var(--pad-section); }
.section--tight { padding-block: calc(var(--pad-section) * .62); }
.section--sand { background: var(--sand); }
.section--tint { background: var(--sage-tint); }
.section--ink { background: var(--ink); color: #C8CEC9; position: relative; }
.section--ink h2, .section--ink h3 { color: var(--white); }
.grid { display: grid; gap: var(--gap); }
@media (min-width: 820px) {
	.grid--2 { grid-template-columns: repeat(2, 1fr); }
	.grid--3 { grid-template-columns: repeat(3, 1fr); }
	.grid--4 { grid-template-columns: repeat(4, 1fr); }
	.grid--split { grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(2rem, 4vw, 4rem); }
	.grid--sidebar { grid-template-columns: 1fr 370px; align-items: start; gap: clamp(2rem, 4vw, 3.5rem); }
}
@media (min-width: 560px) and (max-width: 819px) {
	.grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   Eyebrow — the spec label. This is the theme's structural device: every
   section is tagged like a line on a plaster submittal.
   -------------------------------------------------------------------------- */
.eyebrow {
	font-family: var(--mono);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--sage);
	display: flex;
	align-items: center;
	gap: .7rem;
	margin: 0 0 1rem;
}
.eyebrow::after { content: ""; height: 1px; flex: 1; background: var(--sand-deep); max-width: 90px; }
.eyebrow__idx {
	background: var(--sage); color: var(--plaster);
	padding: .15rem .45rem; border-radius: 2px; letter-spacing: .08em;
}
.section--ink .eyebrow { color: var(--ochre); }
.section--ink .eyebrow::after { background: #333B3D; }
.section--ink .eyebrow__idx { background: var(--ochre); color: var(--ink); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
	font-family: var(--display); font-weight: 700; font-size: 1rem;
	letter-spacing: -0.01em;
	padding: .95rem 1.5rem;
	border-radius: var(--radius);
	border: 2px solid transparent;
	text-decoration: none;
	cursor: pointer;
	transition: transform .12s ease, background-color .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ochre); color: var(--ink); border-color: var(--ochre); }
.btn-primary:hover { background: var(--ochre-deep); border-color: var(--ochre-deep); color: var(--white); }
.btn-call { background: var(--sage); color: var(--white); border-color: var(--sage); }
.btn-call:hover { background: var(--sage-deep); border-color: var(--sage-deep); color: var(--white); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--sand-deep); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.section--ink .btn-ghost { color: var(--white); border-color: #414A4C; }
.section--ink .btn-ghost:hover { border-color: var(--white); color: var(--white); }
.btn-block { width: 100%; }
.btn .ico { width: 19px; height: 19px; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.topbar {
	background: var(--ink); color: #9AA3A0;
	font-family: var(--mono); font-size: .73rem; letter-spacing: .05em;
}
.topbar__in { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 38px; }
.topbar__list { display: flex; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.topbar__list li { margin: 0; display: flex; align-items: center; gap: .4rem; }
.topbar .ico { width: 14px; height: 14px; color: var(--ochre); }
.topbar a { color: #C8CEC9; text-decoration: none; }
.topbar a:hover { color: var(--white); }
@media (max-width: 800px) { .topbar__hide { display: none; } .topbar__in { justify-content: center; } }

.masthead {
	background: var(--plaster);
	border-bottom: 1px solid var(--sand-deep);
	position: sticky; top: 0; z-index: 50;
}
.masthead__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 78px; }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand__img { max-height: 54px; width: auto; }
.brand__mark {
	font-family: var(--display); font-weight: 800; font-size: 1.05rem;
	background: var(--sage); color: var(--plaster);
	width: 40px; height: 40px; border-radius: 3px;
	display: grid; place-items: center; letter-spacing: -.02em;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--display); font-weight: 700; font-size: 1.08rem; color: var(--ink); }
.brand__slot { font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; color: #9A9384; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 1.3rem; }
.nav ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 1.3rem; }
.nav li { margin: 0; position: relative; }
.nav a {
	font-family: var(--display); font-weight: 600; font-size: .95rem;
	color: var(--ink); text-decoration: none; padding: .4rem 0;
	display: inline-flex; align-items: center; gap: .3rem;
}
.nav a:hover, .nav .current-menu-item > a { color: var(--sage); }
.nav .menu-item-has-children > a::after {
	content: ""; width: 5px; height: 5px; border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px);
}
.nav .sub-menu {
	position: absolute; top: 100%; left: -1rem; min-width: 240px;
	background: var(--white); border: 1px solid var(--sand-deep);
	box-shadow: 0 18px 40px rgba(20,24,26,.13);
	padding: .5rem; display: none; flex-direction: column; gap: 0; border-radius: var(--radius);
}
.nav li:hover > .sub-menu, .nav li:focus-within > .sub-menu { display: flex; }
.nav .sub-menu a { padding: .55rem .7rem; font-weight: 500; font-size: .92rem; border-radius: 2px; width: 100%; }
.nav .sub-menu a:hover { background: var(--sage-tint); }
.masthead__cta { display: flex; align-items: center; gap: .6rem; }

.navtoggle {
	display: none; background: none; border: 1.5px solid var(--sand-deep);
	border-radius: var(--radius); padding: .55rem .7rem; cursor: pointer;
	font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
}
@media (max-width: 1000px) {
	.navtoggle { display: block; }
	.masthead__cta .btn-ghost { display: none; }
	.nav {
		position: absolute; top: 100%; left: 0; right: 0;
		background: var(--white); border-bottom: 1px solid var(--sand-deep);
		flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 1.25rem 1.25rem;
		max-height: calc(100vh - 120px); overflow-y: auto;
	}
	.nav[hidden] { display: none; }
	.nav ul { flex-direction: column; gap: 0; width: 100%; }
	.nav > ul > li { border-bottom: 1px solid var(--sand); }
	.nav a { padding: .85rem 0; font-size: 1rem; }
	.nav .sub-menu {
		position: static; display: flex; border: 0; box-shadow: none; padding: 0 0 .6rem .9rem;
		background: transparent;
	}
	.nav .sub-menu a { padding: .45rem 0; color: var(--muted); }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { background: var(--ink); color: #C8CEC9; position: relative; overflow: hidden; }
.hero::before {
	content: ""; position: absolute; inset: 0;
	background-image: var(--grain); opacity: .05; pointer-events: none;
}
.hero__in { position: relative; padding-block: clamp(3rem, 2rem + 5vw, 6rem); }
.hero__grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.08fr .92fr; } }
.hero h1 { color: var(--white); margin-bottom: .45em; }
.hero__lede { font-size: var(--step-1); color: #B9C1BC; max-width: 54ch; }
.hero__proof {
	list-style: none; padding: 0; margin: 1.9rem 0 0;
	display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
	font-family: var(--mono); font-size: .76rem; letter-spacing: .07em; text-transform: uppercase; color: #9AA3A0;
}
.hero__proof li { display: flex; align-items: center; gap: .45rem; margin: 0; }
.hero__proof .ico { width: 15px; height: 15px; color: var(--ochre); }
.hero__media { position: relative; }
.hero__caption {
	font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
	color: #8B938F; margin: .7rem 0 0; display: flex; justify-content: space-between; gap: 1rem;
	border-top: 1px solid #2A3133; padding-top: .55rem;
}

/* --------------------------------------------------------------------------
   Image placeholder plate
   -------------------------------------------------------------------------- */
.img-slot {
	display: grid; place-items: center; position: relative; width: 100%;
	background: var(--sand); border: 1px dashed var(--sand-deep);
	border-radius: var(--radius); overflow: hidden; color: var(--muted);
}
.img-slot__grid {
	position: absolute; inset: 0;
	background-image: linear-gradient(var(--sand-deep) 1px, transparent 1px), linear-gradient(90deg, var(--sand-deep) 1px, transparent 1px);
	background-size: 28px 28px; opacity: .35;
}
.img-slot__meta {
	position: relative; text-align: center; padding: 1rem; display: flex; flex-direction: column; gap: .25rem;
	font-family: var(--mono); font-size: .72rem; letter-spacing: .08em;
}
.img-slot__name { font-weight: 600; color: var(--ink); text-transform: uppercase; }
.img-slot__dim { color: var(--muted); }
.img-slot__alt { max-width: 34ch; margin-inline: auto; font-family: var(--body); letter-spacing: 0; font-size: .78rem; color: #7C837F; }
.hero .img-slot { background: #1D2224; border-color: #333B3D; }
.hero .img-slot__grid { background-image: linear-gradient(#2A3133 1px, transparent 1px), linear-gradient(90deg, #2A3133 1px, transparent 1px); }
.hero .img-slot__name { color: #C8CEC9; }
.hero .img-slot__dim, .hero .img-slot__alt { color: #7F8783; }

/* --------------------------------------------------------------------------
   Trust bar — the three attributes
   -------------------------------------------------------------------------- */
.trust { background: var(--sage-deep); color: #D6DED4; }
.trust__grid { display: grid; gap: 0; }
@media (min-width: 780px) { .trust__grid { grid-template-columns: repeat(3, 1fr); } }
.trust__item { display: flex; gap: .95rem; padding: 1.5rem 1.6rem; align-items: flex-start; }
@media (min-width: 780px) { .trust__item + .trust__item { border-left: 1px solid #3B4C3D; } }
@media (max-width: 779px) { .trust__item + .trust__item { border-top: 1px solid #3B4C3D; } }
.trust__item .ico { width: 26px; height: 26px; color: var(--ochre); flex: none; }
.trust__label { font-family: var(--display); font-weight: 700; color: var(--white); display: block; font-size: 1.02rem; }
.trust__note { font-size: .87rem; color: #AEB9AC; margin: .15rem 0 0; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
	background: var(--white); border: 1px solid var(--sand-deep);
	border-radius: var(--radius); padding: 1.6rem;
	display: flex; flex-direction: column; gap: .55rem;
	transition: border-color .15s ease, transform .15s ease;
}
.card:hover { border-color: var(--sage); transform: translateY(-2px); }
.card .ico { width: 30px; height: 30px; color: var(--sage); margin-bottom: .4rem; }
.card h3 { margin: 0; font-size: 1.12rem; }
.card h3 a { text-decoration: none; color: var(--ink); }
.card h3 a:hover { color: var(--sage); }
.card p { font-size: .93rem; margin: 0; color: var(--muted); }
.card__more {
	margin-top: auto; padding-top: .8rem;
	font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
	color: var(--sage); text-decoration: none; display: inline-flex; align-items: center; gap: .4rem;
}
.card__more .ico { width: 15px; height: 15px; margin: 0; }
.card:hover .card__more { color: var(--ochre-deep); }

/* Area card */
.acard { background: var(--white); border: 1px solid var(--sand-deep); border-radius: var(--radius); padding: 1.3rem 1.5rem; }
.acard h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.acard h3 a { text-decoration: none; color: var(--ink); }
.acard h3 a:hover { color: var(--sage); }
.acard__meta { font-family: var(--mono); font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin: 0 0 .5rem; }
.acard p { font-size: .9rem; margin: 0; color: var(--muted); }

/* --------------------------------------------------------------------------
   Process — a real sequence, so numbering is honest here
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 0; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 1.7rem 1.5rem 1.7rem 0; position: relative; }
@media (min-width: 900px) { .step { padding: 1.9rem 1.6rem 0 0; border-top: 2px solid var(--sand-deep); } }
@media (max-width: 899px) { .step { border-top: 1px solid var(--sand-deep); } }
.step__n {
	font-family: var(--mono); font-size: .74rem; font-weight: 600; letter-spacing: .14em;
	color: var(--ochre-deep); display: block; margin-bottom: .55rem;
}
.step h3 { font-size: 1.06rem; margin-bottom: .35rem; }
.step p { font-size: .92rem; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   Prose (service + area body copy)
   -------------------------------------------------------------------------- */
.prose h2 { margin-top: 2.4em; font-size: var(--step-2); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8em; }
.prose ul { list-style: none; padding: 0; }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before {
	content: ""; position: absolute; left: 0; top: .62em;
	width: 8px; height: 8px; background: var(--ochre); border-radius: 1px;
}
.prose ol { padding-left: 1.3rem; }

/* Sticky sidebar */
.sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1.2rem; }
@media (max-width: 819px) { .sidebar { position: static; } }
.sidepanel { background: var(--white); border: 1px solid var(--sand-deep); border-radius: var(--radius); padding: 1.4rem; }
.sidepanel h3 { font-size: 1.02rem; margin-bottom: .7rem; }
.sidepanel ul { list-style: none; padding: 0; margin: 0; }
.sidepanel li { margin: 0; border-bottom: 1px solid var(--sand); }
.sidepanel li:last-child { border-bottom: 0; }
.sidepanel li a { display: block; padding: .55rem 0; font-size: .93rem; text-decoration: none; color: var(--ink-soft); }
.sidepanel li a:hover { color: var(--sage); padding-left: .25rem; }
.sidepanel li.is-current a { color: var(--sage); font-weight: 600; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--sand-deep); }
.faq__item { border-bottom: 1px solid var(--sand-deep); }
.faq__q {
	width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
	font-family: var(--display); font-weight: 600; font-size: 1.06rem; color: var(--ink);
	padding: 1.15rem 2.5rem 1.15rem 0; position: relative; line-height: 1.35;
}
.faq__q::after {
	content: ""; position: absolute; right: .3rem; top: 50%; width: 13px; height: 13px;
	border-right: 2px solid var(--sage); border-bottom: 2px solid var(--sage);
	transform: translateY(-70%) rotate(45deg); transition: transform .18s ease;
}
.faq__q[aria-expanded="true"]::after { transform: translateY(-30%) rotate(-135deg); }
.faq__a { padding: 0 0 1.25rem; max-width: 72ch; }
.faq__a p:last-child { margin-bottom: 0; }
.faq__a[hidden] { display: none; }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gal { display: grid; gap: .8rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 780px) { .gal { grid-template-columns: repeat(3, 1fr); } }
.gal figure { margin: 0; }
.gal img, .gal .img-slot { border-radius: var(--radius); }
.gal figcaption {
	font-family: var(--mono); font-size: .68rem; letter-spacing: .09em; text-transform: uppercase;
	color: var(--muted); margin-top: .45rem;
}

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */
.review { background: var(--white); border: 1px solid var(--sand-deep); border-left: 3px solid var(--ochre); border-radius: var(--radius); padding: 1.5rem; }
.review p { font-size: .97rem; }
.review__by { font-family: var(--mono); font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   Quote form
   -------------------------------------------------------------------------- */
.quote { background: var(--white); border: 1px solid var(--sand-deep); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); }
.quote__h { font-size: var(--step-2); margin-bottom: .3em; }
.quote__sub { font-size: .95rem; color: var(--muted); }
.quote__form { display: grid; gap: 1rem; }
@media (min-width: 560px) { .quote__form { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); }
.field .opt { color: var(--muted); text-transform: none; letter-spacing: 0; font-family: var(--body); }
.field input, .field select, .field textarea {
	font-family: var(--body); font-size: 1rem; color: var(--ink);
	background: var(--plaster); border: 1.5px solid var(--sand-deep);
	border-radius: var(--radius); padding: .75rem .85rem; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sage); background: var(--white); }
.quote__fine { font-size: .84rem; color: var(--muted); margin: .8rem 0 0; text-align: center; }
.link-call { font-weight: 600; }
.hp { position: absolute; left: -9999px; }
.alert { padding: .9rem 1.1rem; border-radius: var(--radius); margin-bottom: 1.2rem; font-size: .94rem; }
.alert--ok { background: var(--sage-tint); border: 1px solid var(--sage); }
.alert--err { background: #FBEFE6; border: 1px solid var(--ochre); }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta { background: var(--sage-deep); color: #D6DED4; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: .06; }
.cta__in { position: relative; display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 860px) { .cta__in { grid-template-columns: 1.4fr auto; } }
.cta h2 { color: var(--white); margin-bottom: .3em; }
.cta p { color: #B4C0B2; margin: 0; }

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */
.crumbs { padding: 1rem 0 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0;
	font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.crumbs li { margin: 0; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: .45rem; color: var(--sand-deep); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--sage); }

/* --------------------------------------------------------------------------
   Page header
   -------------------------------------------------------------------------- */
.phead { background: var(--plaster); border-bottom: 1px solid var(--sand-deep); padding-bottom: clamp(2rem, 3vw, 3rem); }
.phead__in { padding-top: 1.5rem; }
.phead h1 { margin-bottom: .35em; }
.phead__lede { font-size: var(--step-1); color: var(--muted); max-width: 60ch; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.foot { background: var(--ink); color: #939C98; font-size: .93rem; padding-top: var(--pad-section); }
.foot h3 { color: var(--white); font-size: .82rem; font-family: var(--mono); font-weight: 600;
	letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.foot a { color: #C0C7C3; text-decoration: none; }
.foot a:hover { color: var(--ochre); }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: .5rem; }
.foot__grid { display: grid; gap: 2.2rem; }
@media (min-width: 820px) { .foot__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.foot__brand .brand__name { color: var(--white); }
.foot__brand .brand__slot { color: #7A8480; }
.foot__phone { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--white); display: block; margin-bottom: .3rem; text-decoration: none; }
.foot__phone:hover { color: var(--ochre); }
.foot__hours { display: grid; grid-template-columns: auto 1fr; gap: .25rem 1rem; font-family: var(--mono); font-size: .78rem; }
.foot__hours dt { color: #7A8480; }
.foot__hours dd { margin: 0; }
.foot__bar {
	margin-top: 3rem; border-top: 1px solid #262D2F; padding-block: 1.4rem 5rem;
	display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; justify-content: space-between;
	font-family: var(--mono); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; color: #6E7773;
}
@media (min-width: 780px) { .foot__bar { padding-bottom: 1.4rem; } }

/* --------------------------------------------------------------------------
   Sticky mobile call bar
   -------------------------------------------------------------------------- */
.callbar {
	position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
	display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
	background: var(--ink); border-top: 1px solid #2A3133;
}
.callbar a {
	display: flex; align-items: center; justify-content: center; gap: .5rem;
	padding: .95rem .5rem; text-decoration: none;
	font-family: var(--display); font-weight: 700; font-size: .97rem;
}
.callbar__call { background: var(--ochre); color: var(--ink); }
.callbar__quote { background: var(--sage); color: var(--white); }
.callbar .ico { width: 18px; height: 18px; }
@media (min-width: 780px) { .callbar { display: none; } }

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.lede { font-size: var(--step-1); color: var(--ink-soft); }
.center { text-align: center; }
.center p { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.stack > * + * { margin-top: 1rem; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
