/* ==========================================================================
   Unplugged Designs — design system
   Gulf palette (18 Sep 2026 refresh): shell white / lagoon teal / terracotta.
   Token names kept from v1 (limestone = page bg, palm = primary, bronze = accent). Mobile first.
   ========================================================================== */

:root {
	--limestone: #F5F6F2;
	--shell: #FCFCFA;
	--sand: #E2E6DF;
	--sand-deep: #C9D0C6;
	--ink: #152322;
	--ink-soft: #465553;
	--charcoal: #0F2A2C;
	--palm: #0E5157;
	--palm-deep: #0A3D41;
	--sage: #5E8A7B;
	--sage-soft: #DCE8E3;
	--bronze: #A84D29;
	--bronze-light: #EFA27E;

	--f-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--f-body: Manrope, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--wide: 1240px;
	--text: 720px;
	--gutter: clamp(1.25rem, 4vw, 2.5rem);
	--section: clamp(4rem, 9vw, 8rem);
	--radius: 14px;
	--radius-lg: 22px;
	--shadow: 0 1px 2px rgba(28, 30, 27, .04), 0 12px 32px -12px rgba(28, 30, 27, .14);
	--shadow-lg: 0 2px 4px rgba(28, 30, 27, .05), 0 24px 60px -20px rgba(28, 30, 27, .28);
	--ease: cubic-bezier(.2, .7, .2, 1);
	--header-h: 76px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
	margin: 0;
	background: var(--limestone);
	color: var(--ink);
	font: 400 1.0625rem/1.7 var(--f-body);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--palm); text-underline-offset: .2em; text-decoration-thickness: 1px; }
a:hover { color: var(--bronze); }
:focus-visible { outline: 3px solid var(--bronze); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--sage-soft); }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; margin: 0 0 .5em; color: var(--ink); text-wrap: balance; }
h1 { font-size: clamp(2.75rem, 1.6rem + 4.6vw, 5.25rem); }
h2 { font-size: clamp(2.125rem, 1.4rem + 2.8vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 1.25rem + .9vw, 1.875rem); line-height: 1.15; }
h4 { font-family: var(--f-body); font-size: 1rem; font-weight: 700; letter-spacing: .01em; }
p { margin: 0 0 1.15em; text-wrap: pretty; }
ul, ol { padding-left: 1.2em; margin: 0 0 1.2em; }
li { margin-bottom: .35em; }
strong { font-weight: 700; }
hr { border: 0; border-top: 1px solid var(--sand); margin: 3rem 0; }
address { font-style: normal; }
table { border-collapse: collapse; width: 100%; }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.ud-skip { position: absolute; left: 1rem; top: -100px; z-index: 1000; background: var(--palm); color: #fff; padding: .75rem 1.25rem; border-radius: 999px; font-weight: 700; }
.ud-skip:focus { top: 1rem; color: #fff; }

.ud-i { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Type helpers ---------- */
.ud-eyebrow {
	display: inline-flex; align-items: center; gap: .75rem;
	font: 700 .75rem/1.2 var(--f-body); letter-spacing: .18em; text-transform: uppercase;
	color: var(--bronze); margin: 0 0 1.25rem;
}
.ud-eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.ud-eyebrow a { color: inherit; text-decoration: none; }
.ud-eyebrow--light { color: var(--bronze-light); }
.ud-lead, .ud-content .ud-lead { font-size: clamp(1.1875rem, 1rem + .6vw, 1.375rem); line-height: 1.6; color: var(--ink-soft); }
.ud-statement, .ud-content .ud-statement {
	font-family: var(--f-display); font-weight: 500; font-size: clamp(1.75rem, 1.2rem + 2.2vw, 3rem);
	line-height: 1.2; letter-spacing: -.01em; color: var(--ink); max-width: 34ch;
}
.ud-statement em { font-style: italic; color: var(--palm); }
.ud-fineprint { font-size: .875rem; color: var(--ink-soft); line-height: 1.6; }
.ud-tag {
	display: inline-block; font: 700 .6875rem/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase;
	color: var(--palm); background: var(--sage-soft); padding: .45em .8em; border-radius: 999px; margin-bottom: .9rem;
}
.ud-link { font-weight: 700; color: var(--palm); text-decoration: underline; text-decoration-color: var(--sand-deep); }
.ud-link:hover { text-decoration-color: currentColor; }

/* ---------- Buttons ---------- */
.ud-btn, .ud-content .wp-block-button__link {
	display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
	min-height: 52px; padding: .8rem 1.6rem; border-radius: 999px;
	font: 700 .9375rem/1.2 var(--f-body); letter-spacing: .01em; text-decoration: none; text-align: center;
	border: 1.5px solid transparent; cursor: pointer;
	transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.ud-btn__arrow { display: inline-flex; transition: transform .2s var(--ease); }
.ud-btn:hover .ud-btn__arrow { transform: translateX(3px); }
.ud-btn--solid, .ud-content .wp-block-button__link { background: var(--palm); color: #fff; }
.ud-btn--solid:hover, .ud-content .wp-block-button__link:hover { background: var(--palm-deep); color: #fff; }
.ud-btn--outline, .ud-content .is-style-outline .wp-block-button__link { background: transparent; color: var(--ink); border-color: var(--ink); }
.ud-btn--outline:hover, .ud-content .is-style-outline .wp-block-button__link:hover { background: var(--ink); color: var(--shell); }
.ud-btn--light { background: var(--shell); color: var(--palm); }
.ud-btn--light:hover { background: #fff; color: var(--palm-deep); }
.ud-btn--ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.ud-btn--ghost-light:hover { background: rgba(255,255,255,.16); color: #fff; border-color: #fff; }

/* ---------- Header ---------- */
.ud-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(245, 246, 242, .92);
	backdrop-filter: saturate(140%) blur(12px);
	-webkit-backdrop-filter: saturate(140%) blur(12px);
	border-bottom: 1px solid rgba(201, 208, 198, .6);
	transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.ud-header__inner {
	max-width: calc(var(--wide) + 2 * var(--gutter)); margin: 0 auto; padding: 0 var(--gutter);
	height: var(--header-h); display: flex; align-items: center; gap: 1.5rem;
}
.ud-brand { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); line-height: 1; margin-right: auto; }
.ud-brand__name { font-family: var(--f-display); font-size: 1.625rem; font-weight: 600; letter-spacing: -.01em; }
.ud-brand__tag { white-space: nowrap; font: 700 .625rem/1 var(--f-body); letter-spacing: .22em; text-transform: uppercase; color: var(--bronze); margin-top: .45rem; }
.ud-brand:hover { color: var(--ink); }
.ud-brand--light, .ud-brand--light:hover { color: var(--shell); }
.ud-brand--light .ud-brand__tag { color: var(--bronze-light); }

.ud-header__actions { display: flex; align-items: center; gap: .75rem; }
.ud-header__actions .ud-btn { display: none; min-height: 44px; padding: .6rem 1.2rem; font-size: .875rem; }
.ud-header__phone { display: none; font-weight: 700; font-size: .9375rem; color: var(--ink); text-decoration: none; white-space: nowrap; }
.ud-menu-btn {
	display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
	border: 1px solid var(--sand-deep); border-radius: 999px; background: var(--shell); color: var(--ink); cursor: pointer;
}
.ud-menu-btn .ud-i { width: 22px; height: 22px; }
.ud-menu-btn__close, .ud-menu-btn[aria-expanded="true"] .ud-menu-btn__open { display: none; }
.ud-menu-btn[aria-expanded="true"] .ud-menu-btn__close { display: inline-flex; }

/* Header over the home hero */
.ud-header--over:not(.is-scrolled):not(.is-open) { background: transparent; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.has-hero-over .ud-header { position: fixed; left: 0; right: 0; }
.admin-bar .ud-header { top: 32px; }
.admin-bar .ud-nav { top: calc(var(--header-h) + 32px); }
@media (max-width: 782px) { .admin-bar .ud-header { top: 46px; } .admin-bar .ud-nav { top: calc(var(--header-h) + 46px); } }
@media (max-width: 600px) { .admin-bar .ud-header { top: 0; } #wpadminbar { position: absolute; } }
.ud-header--over:not(.is-scrolled):not(.is-open) .ud-brand,
.ud-header--over:not(.is-scrolled):not(.is-open) .ud-header__phone { color: #fff; }
.ud-header--over:not(.is-scrolled):not(.is-open) .ud-brand__tag { color: var(--bronze-light); }
.ud-header--over:not(.is-scrolled):not(.is-open) .ud-menu-btn { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); color: #fff; }

/* Nav — mobile panel */
.ud-nav {
	position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
	background: var(--limestone); overflow-y: auto; padding: 1rem var(--gutter) 7rem;
	visibility: hidden; opacity: 0; transform: translateY(-8px);
	transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
}
.ud-header.is-open .ud-nav { visibility: visible; opacity: 1; transform: none; transition-delay: 0s; }
.ud-nav__list { list-style: none; margin: 0; padding: 0; }
.ud-nav__item { display: flex; flex-wrap: wrap; align-items: center; border-bottom: 1px solid var(--sand); margin: 0; }
.ud-nav__link { flex: 1; padding: 1rem 0; font-family: var(--f-display); font-size: 1.75rem; font-weight: 500; color: var(--ink); text-decoration: none; }
.ud-nav__link[aria-current] { color: var(--palm); }
.ud-nav__toggle { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; background: none; border: 0; color: var(--ink); cursor: pointer; border-radius: 999px; }
.ud-nav__toggle .ud-i { transition: transform .2s var(--ease); }
.ud-nav__toggle[aria-expanded="true"] .ud-i { transform: rotate(180deg); }
.ud-nav__sub { list-style: none; margin: 0 0 1rem; padding: 0; width: 100%; display: none; }
.ud-nav__toggle[aria-expanded="true"] + .ud-nav__sub { display: block; }
.ud-nav__sub a { display: block; padding: .6rem 0 .6rem 1rem; color: var(--ink-soft); text-decoration: none; font-weight: 600; border-left: 2px solid var(--sand); }
.ud-nav__sub a:hover, .ud-nav__sub a[aria-current] { color: var(--palm); border-color: var(--bronze); }
.ud-nav__mobile-extra { margin-top: 2rem; }
.ud-nav__mobile-extra .ud-btn { width: 100%; }
.ud-nav__mobile-extra p { margin-top: 1.25rem; color: var(--ink-soft); font-size: .9375rem; }
.ud-nav__phone { font-weight: 700; font-size: 1.25rem; color: var(--ink); text-decoration: none; }
body.ud-lock { overflow: hidden; }

@media (min-width: 640px) {
	.ud-header__actions .ud-btn { display: inline-flex; }
}
@media (min-width: 1180px) {
	:root { --header-h: 84px; }
	.ud-menu-btn, .ud-nav__mobile-extra { display: none; }
	.ud-header__phone { display: inline; }
	.ud-nav { position: static; visibility: visible; opacity: 1; transform: none; background: none; padding: 0; overflow: visible; }
	.ud-nav__list { display: flex; align-items: center; gap: .15rem; }
	.ud-nav__item { position: relative; border: 0; flex-wrap: nowrap; }
	.ud-nav__link { font: 600 .875rem/1 var(--f-body); padding: .75rem .55rem; border-radius: 999px; color: var(--ink); white-space: nowrap; }
	.ud-header__inner { gap: 1rem; }
	.ud-nav__item.is-active > .ud-nav__link { color: var(--palm); }
	.ud-nav__item.is-active > .ud-nav__link::after { content: ""; display: block; height: 1.5px; background: var(--bronze); margin-top: .35rem; }
	.ud-nav__link:hover { color: var(--palm); }
	.ud-header--over:not(.is-scrolled) .ud-nav__link { color: #fff; }
	.ud-header--over:not(.is-scrolled) .ud-nav__toggle { color: #fff; }
	.ud-nav__toggle { width: 22px; height: 32px; margin-left: -.5rem; }
	.ud-nav__toggle .ud-i { width: 14px; height: 14px; }
	.ud-nav__sub {
		display: block; position: absolute; top: calc(100% + 6px); left: -.5rem; min-width: 260px; margin: 0;
		background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: .6rem;
		visibility: hidden; opacity: 0; transform: translateY(6px); transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s linear .18s;
	}
	.ud-nav__sub::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
	.has-sub:hover > .ud-nav__sub, .has-sub:focus-within > .ud-nav__sub, .ud-nav__toggle[aria-expanded="true"] + .ud-nav__sub { visibility: visible; opacity: 1; transform: none; transition-delay: 0s; }
	.ud-nav__sub a { border: 0; padding: .65rem .85rem; border-radius: 10px; font-size: .9375rem; color: var(--ink); }
	.ud-nav__sub a:hover, .ud-nav__sub a[aria-current] { background: var(--limestone); color: var(--palm); }
}
@media (min-width: 1180px) and (max-width: 1440px) { .ud-header__phone { display: none; } }
@media (min-width: 1180px) and (max-width: 1280px) { .ud-brand__tag { display: none; } }

/* ---------- Home hero ---------- */
.ud-hero--home { position: relative; min-height: min(92vh, 900px); display: flex; align-items: flex-end; color: #fff; isolation: isolate; background: var(--charcoal); }
.ud-hero__media, .ud-hero__media img, .ud-hero__media .ud-ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ud-hero__media { z-index: -1; }
.ud-hero__media::after {
	content: ""; position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(9,30,32,.55) 0%, rgba(9,30,32,0) 28%),
		linear-gradient(90deg, rgba(9,30,32,.72) 0%, rgba(9,30,32,.35) 45%, rgba(9,30,32,0) 70%),
		linear-gradient(0deg, rgba(9,30,32,.86) 0%, rgba(9,30,32,.45) 42%, rgba(9,30,32,0) 72%);
}
.ud-hero__content { width: 100%; max-width: calc(var(--wide) + 2 * var(--gutter)); margin: 0 auto; padding: calc(var(--header-h) + 5rem) var(--gutter) clamp(3rem, 7vw, 5.5rem); }
.ud-hero__title { color: #fff; font-size: clamp(2.75rem, 1.5rem + 4.2vw, 5.25rem); max-width: 15ch; margin-bottom: 1.5rem; text-shadow: 0 2px 24px rgba(0,0,0,.25); }
.ud-hero__title em { font-style: italic; color: var(--bronze-light); }
.ud-hero__lede { font-size: clamp(1.0625rem, .95rem + .5vw, 1.3125rem); max-width: 40rem; color: rgba(255,255,255,.88); margin-bottom: 2rem; }
.ud-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.ud-hero__trust { display: flex; align-items: center; gap: .75rem; margin: 2rem 0 0; font-size: .875rem; color: rgba(255,255,255,.8); font-weight: 600; }
.ud-stars { display: inline-flex; gap: 2px; color: var(--bronze-light); }
.ud-stars .ud-i { width: 15px; height: 15px; }
@media (max-width: 639px) {
	.ud-hero--home { min-height: 0; }
	.ud-hero__content { padding-top: calc(var(--header-h) + 9rem); }
	.ud-hero__actions .ud-btn { flex: 1 1 100%; }
}

/* ---------- Page header ---------- */
.ud-pagehead {
	max-width: calc(var(--wide) + 2 * var(--gutter)); margin: 0 auto;
	padding: clamp(2rem, 5vw, 4rem) var(--gutter) clamp(2.5rem, 6vw, 5rem);
	display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.ud-pagehead h1 { font-size: clamp(2.5rem, 1.5rem + 4vw, 4.75rem); margin-bottom: 1.25rem; }
.ud-pagehead__lede { font-size: clamp(1.125rem, 1rem + .5vw, 1.3125rem); color: var(--ink-soft); max-width: 38rem; margin-bottom: 2rem; }
.ud-pagehead__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.ud-pagehead__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-lg); }
.ud-pagehead__media img, .ud-pagehead__media .ud-ph { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) {
	.ud-pagehead--img { grid-template-columns: 1.05fr 1fr; }
	.ud-pagehead--img .ud-pagehead__media { aspect-ratio: 5 / 4; }
}
@media (max-width: 639px) { .ud-pagehead__actions .ud-btn { flex: 1 1 100%; } }

/* Breadcrumbs */
.ud-crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0 0 2rem; font-size: .8125rem; font-weight: 600; color: var(--ink-soft); }
.ud-crumbs li { margin: 0; display: flex; gap: .4rem; }
.ud-crumbs li + li::before { content: "/"; color: var(--sand-deep); }
.ud-crumbs a { color: var(--ink-soft); text-decoration: none; }
.ud-crumbs a:hover { color: var(--palm); text-decoration: underline; }

/* ---------- Content flow ---------- */
.ud-content > * { max-width: var(--text); margin-left: auto; margin-right: auto; padding-left: var(--gutter); padding-right: var(--gutter); box-sizing: content-box; }
.ud-content > .ud-section, .ud-content > .ud-cta, .ud-content > .alignfull { max-width: none; padding-left: 0; padding-right: 0; box-sizing: border-box; }
/* Full-bleed sections keep the page gutter so text never touches the screen edge on phones and tablets. */
.ud-content > .ud-section { padding-left: var(--gutter); padding-right: var(--gutter); }
.ud-content > .alignwide { max-width: var(--wide); }
.ud-content > :last-child:not(.ud-section):not(.ud-cta) { margin-bottom: var(--section); }
.ud-content :where(h2) { margin-top: 1.6em; }
.ud-content :where(h3) { margin-top: 1.4em; }
.ud-content :where(.ud-panel, .ud-card, .ud-guides, .ud-process, .ud-pricetable, .ud-facts, .ud-form, .ud-cta, .ud-section-head, .ud-reviews, .ud-contact-card) :where(h2, h3) { margin-top: 0; }
.ud-content > h2:first-child, .ud-section h2:first-child { margin-top: 0; }

/* Sections: full-width bands with a centered inner column. */
.ud-section { padding: var(--section) var(--gutter); }
.ud-section > * { max-width: var(--wide); margin-left: auto; margin-right: auto; }
.ud-section > p, .ud-section > ul:not([role]), .ud-section > ol:not([role]) { max-width: var(--wide); }
.ud-section--text > * { max-width: var(--text); }
.ud-section--tight { padding-top: calc(var(--section) * .55); padding-bottom: calc(var(--section) * .55); }
.ud-section--flush-top { padding-top: 0; }
.ud-section--shell { background: var(--shell); }
.ud-section--sand { background: var(--sand); }
.ud-section--dark { background: var(--charcoal); color: rgba(255,255,255,.82); }
.ud-section--palm { background: var(--palm); color: rgba(255,255,255,.85); }
.ud-section--dark h2, .ud-section--dark h3, .ud-section--palm h2, .ud-section--palm h3 { color: #fff; }
.ud-section--dark .ud-eyebrow, .ud-section--palm .ud-eyebrow { color: var(--bronze-light); }
.ud-section--dark a:not(.ud-btn), .ud-section--palm a:not(.ud-btn) { color: #fff; }
.ud-section--dark .ud-lead, .ud-section--palm .ud-lead { color: rgba(255,255,255,.78); }

.ud-section-head { display: grid; gap: 1rem 3rem; margin-bottom: clamp(2.5rem, 5vw, 4rem) !important; align-items: end; }
.ud-section-head > * { margin-bottom: 0; }
.ud-section-head h2 { max-width: 18ch; }
.ud-section-head p:not(.ud-eyebrow) { color: var(--ink-soft); max-width: 36rem; }
.ud-section--dark .ud-section-head p:not(.ud-eyebrow), .ud-section--palm .ud-section-head p:not(.ud-eyebrow) { color: rgba(255,255,255,.75); }
@media (min-width: 900px) {
	.ud-section-head.is-split { grid-template-columns: 1.1fr 1fr; }
	.ud-section-head.is-split .ud-eyebrow { grid-column: 1 / -1; }
}

/* Split (core columns) */
.ud-split { display: grid; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.ud-split > div { min-width: 0; }
.ud-split > div > :last-child { margin-bottom: 0; }
@media (min-width: 900px) {
	.ud-split { grid-template-columns: 1fr 1fr; }
	.ud-split.is-reversed > :first-child { order: 2; }
	.ud-split.is-wide-left { grid-template-columns: 1.2fr 1fr; }
}
.ud-split figure, .ud-photo { margin: 0; }
.ud-split img, .ud-photo img, .ud-photo .ud-ph { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow); }
.ud-photo--tall img, .ud-photo--tall .ud-ph { aspect-ratio: 4 / 5; }
.ud-photo figcaption { font-size: .8125rem; color: var(--ink-soft); margin-top: .75rem; }

/* Grid of columns for general content */
.ud-grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 720px) { .ud-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ud-grid--3 { grid-template-columns: repeat(3, 1fr); } .ud-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.ud-grid > * { min-width: 0; }
.ud-panel { background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem); height: 100%; }
.ud-panel > :last-child { margin-bottom: 0; }
.ud-panel h3 { margin-top: 0; }
.ud-section--shell .ud-panel { background: var(--limestone); }

/* Checklist */
.ud-checklist { list-style: none; padding: 0; }
.ud-checklist li { position: relative; padding-left: 2rem; margin-bottom: .7rem; }
.ud-checklist li::before {
	content: ""; position: absolute; left: 0; top: .42em; width: 1.1rem; height: 1.1rem; border-radius: 50%;
	background: var(--sage-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E5157' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-10'/%3E%3C/svg%3E") center / 62% no-repeat;
}
.ud-section--dark .ud-checklist li::before, .ud-section--palm .ud-checklist li::before { background-color: rgba(255,255,255,.14); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EFA27E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-10'/%3E%3C/svg%3E"); }
.ud-checklist--cols { columns: 2 16rem; column-gap: 2.5rem; }
.ud-checklist--cols li { break-inside: avoid; }

/* ---------- Cards ---------- */
.ud-cards { list-style: none; padding: 0; margin: 0 auto; display: grid; gap: clamp(1rem, 2vw, 1.5rem); grid-template-columns: 1fr; }
@media (min-width: 640px) { .ud-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ud-cards--services { grid-template-columns: repeat(4, 1fr); } .ud-cards--materials { grid-template-columns: repeat(3, 1fr); } }
.ud-card { margin: 0; }
.ud-card__link {
	display: flex; flex-direction: column; height: 100%; background: var(--shell); border: 1px solid var(--sand);
	border-radius: var(--radius-lg); overflow: hidden; color: var(--ink); text-decoration: none;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.ud-card__link:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--sand-deep); color: var(--ink); }
.ud-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.ud-card__media img, .ud-card__media .ud-ph { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ud-card__link:hover .ud-card__media img { transform: scale(1.04); }
.ud-card__body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.ud-card__num { font: 700 .75rem/1 var(--f-body); letter-spacing: .16em; color: var(--bronze); margin-bottom: .9rem; }
.ud-card__title { font-size: 1.75rem; margin: 0 0 .6rem; }
.ud-card__body p { font-size: .9688rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 1.25rem; }
.ud-card__more { margin-top: auto; display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .875rem; color: var(--palm); }
.ud-card__more .ud-i { transition: transform .2s var(--ease); }
a:hover .ud-card__more .ud-i { transform: translateX(3px); }
.ud-section--dark .ud-card__link { background: #16393B; border-color: #24494A; color: #fff; }
.ud-section--dark .ud-card__link:hover { color: #fff; border-color: #3C6264; }
.ud-section--dark .ud-card__title { color: #fff; }
.ud-section--dark .ud-card__body p { color: rgba(255,255,255,.7); }
.ud-section--dark .ud-card__more { color: var(--bronze-light); }

.ud-price { font-size: .9375rem; color: var(--ink-soft); margin-top: auto; }
.ud-price strong { font-family: var(--f-display); font-size: 1.625rem; font-weight: 600; color: var(--ink); }
.ud-price--call { font-weight: 700; color: var(--palm); font-size: .875rem; }
.ud-card--material .ud-price { padding-top: 1rem; border-top: 1px solid var(--sand); }

/* Placeholder — shown only where a real photo is still needed. */
.ud-ph {
	display: flex; align-items: flex-end; justify-content: flex-start; min-height: 180px; padding: 1rem;
	background:
		radial-gradient(120% 90% at 100% 0%, rgba(94,138,123,.35), transparent 60%),
		linear-gradient(135deg, #E6ECE8, #D2DDD8);
	color: var(--palm);
}
.ud-ph span { font: 700 .6875rem/1 var(--f-body); letter-spacing: .16em; text-transform: uppercase; background: rgba(251,249,245,.85); padding: .5em .8em; border-radius: 999px; }
.ud-ph span:empty { display: none; }

/* ---------- Featured project ---------- */
.ud-feature { display: grid; gap: clamp(2rem, 4vw, 4rem); }
@media (min-width: 1024px) { .ud-feature { grid-template-columns: 1.25fr 1fr; align-items: start; } }
.ud-feature .ud-photo img { aspect-ratio: 4 / 3; }
.ud-feature__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.ud-feature__pair img { aspect-ratio: 1 / 1 !important; }
.ud-story { list-style: none; padding: 0; margin: 0; counter-reset: s; }
.ud-story li { padding: 1.25rem 0; border-top: 1px solid var(--sand); margin: 0; }
.ud-story li:last-child { border-bottom: 1px solid var(--sand); }
.ud-story strong { display: block; font: 700 .75rem/1 var(--f-body); letter-spacing: .16em; text-transform: uppercase; color: var(--bronze); margin-bottom: .6rem; }
.ud-section--dark .ud-story li { border-color: #24494A; }

/* ---------- Process ---------- */
.ud-process { list-style: none; padding: 0; margin: 0 auto; display: grid; gap: 1px; background: var(--sand); border: 1px solid var(--sand); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 720px) { .ud-process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .ud-process { grid-template-columns: repeat(4, 1fr); } }
.ud-process li { background: var(--shell); padding: clamp(1.75rem, 3vw, 2.5rem); margin: 0; }
.ud-process__n { display: block; font-family: var(--f-display); font-size: 3.5rem; line-height: 1; color: var(--bronze); margin-bottom: 1.5rem; }
.ud-process h3 { font-size: 1.625rem; margin: 0 0 .75rem; }
.ud-process p { color: var(--ink-soft); font-size: .9688rem; margin: 0; }

/* ---------- Delivery facts row ---------- */
.ud-facts-row { list-style: none; padding: 0; margin: 0 auto; display: grid; gap: 1rem; }
@media (min-width: 640px) { .ud-facts-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ud-facts-row { grid-template-columns: repeat(4, 1fr); } }
.ud-facts-row li { margin: 0; padding: 1.5rem; border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; gap: .35rem; }
.ud-facts-row .ud-i { width: 26px; height: 26px; color: var(--bronze-light); margin-bottom: .75rem; }
.ud-facts-row strong { font-family: var(--f-display); font-size: 1.5rem; font-weight: 500; color: #fff; line-height: 1.15; }
.ud-facts-row span { font-size: .9375rem; color: rgba(255,255,255,.72); }
.ud-section:not(.ud-section--dark):not(.ud-section--palm) .ud-facts-row li { background: var(--shell); border-color: var(--sand); }
.ud-section:not(.ud-section--dark):not(.ud-section--palm) .ud-facts-row strong { color: var(--ink); }
.ud-section:not(.ud-section--dark):not(.ud-section--palm) .ud-facts-row span { color: var(--ink-soft); }
.ud-section:not(.ud-section--dark):not(.ud-section--palm) .ud-facts-row .ud-i { color: var(--bronze); }

/* Material facts box */
.ud-facts { background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2rem); box-shadow: var(--shadow); }
.ud-facts dl { margin: 0 0 1.5rem; display: grid; gap: 0; }
.ud-facts dl > div { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--sand); }
.ud-facts dt { font-weight: 700; font-size: .875rem; color: var(--ink-soft); }
.ud-facts dd { margin: 0; text-align: right; font-size: .9375rem; }
.ud-facts dd .ud-price strong { font-size: 1.5rem; }
.ud-facts__actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.ud-facts__actions .ud-btn { width: 100%; }

/* ---------- Price table ---------- */
.ud-pricetable { display: grid; gap: 2rem; }
@media (min-width: 900px) { .ud-pricetable { grid-template-columns: 1fr 1fr; } }
.ud-pricetable__group { background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 1.5rem 1.5rem .75rem; }
.ud-pricetable h3 { font-size: 1.625rem; margin: 0 0 .75rem; }
.ud-pricetable th, .ud-pricetable td { text-align: left; padding: .85rem .5rem .85rem 0; border-top: 1px solid var(--sand); font-size: .9375rem; vertical-align: middle; }
.ud-pricetable thead th { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); border-top: 0; padding-top: 0; }
.ud-pricetable tbody th a { color: var(--ink); font-weight: 700; text-decoration: none; }
.ud-pricetable tbody th a:hover { color: var(--palm); text-decoration: underline; }
.ud-pricetable td:last-child { text-align: right; white-space: nowrap; padding-right: 0; }
.ud-pricetable .ud-price strong { font-size: 1.25rem; }
@media (max-width: 520px) {
	.ud-pricetable thead { display: none; }
	.ud-pricetable tr { display: grid; grid-template-columns: 1fr auto; padding: .75rem 0; border-top: 1px solid var(--sand); }
	.ud-pricetable th, .ud-pricetable td { border: 0; padding: .15rem 0; }
	.ud-pricetable td:last-child { grid-column: 1 / -1; text-align: left; }
}

/* ---------- Calculator ---------- */
.ud-calc { background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.75rem); box-shadow: var(--shadow); }
.ud-calc__form { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.ud-calc__form .ud-field--full { grid-column: 1 / -1; }
.ud-calc__form .ud-field:nth-of-type(4) { grid-column: 1 / -1; }
.ud-calc__go { grid-column: 1 / -1; width: 100%; }
@media (min-width: 760px) {
	.ud-calc__form { grid-template-columns: repeat(3, 1fr); }
	.ud-calc__form .ud-field:nth-of-type(4) { grid-column: auto; }
}
.ud-calc__result { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--sand); }
.ud-calc__nums { display: grid; gap: 1rem; }
@media (min-width: 640px) { .ud-calc__nums { grid-template-columns: 1fr 1.3fr; } }
.ud-calc__nums > div { padding: 1.5rem; border-radius: var(--radius); background: var(--limestone); display: flex; flex-direction: column; gap: .25rem; }
.ud-calc__nums > .is-rec { background: var(--palm); color: rgba(255,255,255,.8); }
.ud-calc__label { font: 700 .75rem/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase; }
.ud-calc__val { font-family: var(--f-display); font-size: clamp(2.75rem, 2rem + 3vw, 4rem); line-height: 1; color: var(--ink); margin: .4rem 0; }
.is-rec .ud-calc__val { color: #fff; }
.ud-calc__unit { font-size: .875rem; }
.ud-calc__min { margin: 1rem 0 0; padding: 1rem 1.25rem; border-left: 3px solid var(--bronze); background: var(--limestone); border-radius: 0 var(--radius) var(--radius) 0; font-size: .9375rem; }
.ud-calc__cta { margin-top: 1.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.ud-calc__cta p { margin: 0; font-family: var(--f-display); font-size: 1.625rem; }
.ud-calc__error { color: #8A2C1C; font-weight: 700; margin: 1rem 0 0; }
.ud-calc .ud-fineprint { margin: 1.5rem 0 0; }

/* ---------- Forms ---------- */
.ud-field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.ud-field label { font-weight: 700; font-size: .875rem; }
.ud-field label span, .ud-field label abbr { font-weight: 500; color: var(--ink-soft); text-decoration: none; }
.ud-field input, .ud-field select, .ud-field textarea {
	width: 100%; min-height: 52px; padding: .8rem 1rem; font: 500 1rem/1.4 var(--f-body); color: var(--ink);
	background: #fff; border: 1.5px solid var(--sand-deep); border-radius: 12px; transition: border-color .15s, box-shadow .15s;
	appearance: none;
}
.ud-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23152322' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px; padding-right: 2.75rem; }
.ud-field textarea { min-height: 140px; resize: vertical; }
.ud-field input[type="file"] { padding: .7rem; min-height: 0; background: var(--limestone); border-style: dashed; }
.ud-field input:focus, .ud-field select:focus, .ud-field textarea:focus { outline: none; border-color: var(--palm); box-shadow: 0 0 0 4px rgba(14,81,87,.16); }
.ud-hint { font-size: .8125rem; color: var(--ink-soft); margin: 0; }
.ud-form { background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 3rem); box-shadow: var(--shadow); }
.ud-form fieldset { border: 0; padding: 0; margin: 0 0 1.75rem; }
.ud-form legend { font-family: var(--f-display); font-size: 1.625rem; font-weight: 500; margin-bottom: 1rem; padding: 0; }
.ud-grid-2 { display: grid; gap: 0 1.25rem; }
@media (min-width: 640px) { .ud-grid-2 { grid-template-columns: 1fr 1fr; } }
.ud-field--material[hidden] { display: none; }
.ud-form__submit { width: 100%; margin-top: .5rem; }
@media (min-width: 640px) { .ud-form__submit { width: auto; } }
.ud-form__error { background: #FBEDE9; color: #7A2616; border-radius: 12px; padding: 1rem 1.25rem; font-weight: 700; }
.ud-form-done { background: var(--palm); color: rgba(255,255,255,.85); border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem); }
.ud-form-done h2 { color: #fff; margin-top: 0; }
.ud-form-done a { color: #fff; font-weight: 700; }
.ud-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Contact card ---------- */
.ud-contact-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.25rem; }
.ud-contact-card li { display: flex; gap: 1rem; margin: 0; }
.ud-contact-card .ud-i { width: 22px; height: 22px; color: var(--bronze); margin-top: .2rem; }
.ud-contact-card span { display: block; font: 700 .75rem/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .4rem; }
.ud-contact-card a { font-weight: 700; color: var(--ink); text-decoration: none; }
.ud-contact-card a:hover { color: var(--palm); text-decoration: underline; }

/* ---------- Areas ---------- */
.ud-areas { list-style: none; padding: 0; margin: 0 auto; display: grid; gap: .75rem; }
@media (min-width: 560px) { .ud-areas--grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .ud-areas--grid { grid-template-columns: repeat(4, 1fr); } }
.ud-areas li { margin: 0; }
.ud-areas a { display: flex; align-items: center; gap: .75rem; padding: 1.15rem 1.25rem; border-radius: var(--radius); background: var(--shell); border: 1px solid var(--sand); color: var(--ink); text-decoration: none; font-weight: 700; transition: border-color .2s, transform .2s var(--ease); }
.ud-areas a:hover { border-color: var(--palm); transform: translateY(-2px); color: var(--ink); }
.ud-areas span { font-family: var(--f-display); font-size: 1.375rem; font-weight: 500; }
.ud-areas small { font: 700 .625rem/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase; color: var(--bronze); }
.ud-areas .ud-i { margin-left: auto; color: var(--sage); }
.ud-section--dark .ud-areas a, .ud-section--palm .ud-areas a { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); color: #fff; }
.ud-section--dark .ud-areas a:hover, .ud-section--palm .ud-areas a:hover { border-color: var(--bronze-light); }

/* ---------- Reviews ---------- */
.ud-reviews__summary { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.ud-reviews__summary p { margin: 0; font-size: 1.0625rem; }
.ud-reviews__summary strong { font-family: var(--f-display); font-size: 1.75rem; font-weight: 500; }
.ud-reviews .ud-stars .ud-i { width: 22px; height: 22px; color: var(--bronze); }
.ud-reviews__list { list-style: none; padding: 0; margin: 2.5rem 0 0; display: grid; gap: 1.25rem; }
@media (min-width: 900px) { .ud-reviews__list { grid-template-columns: repeat(3, 1fr); } }
.ud-reviews__list li { margin: 0; background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 1.75rem; }
.ud-reviews__list blockquote { margin: 0 0 1rem; font-family: var(--f-display); font-size: 1.375rem; line-height: 1.35; }
.ud-reviews__by { font-weight: 700; font-size: .875rem; margin: 0; }
.ud-reviews__by span { font-weight: 500; color: var(--ink-soft); }

/* ---------- Guides ---------- */
.ud-guides { list-style: none; padding: 0; margin: 0 auto; display: grid; gap: 1.25rem; }
@media (min-width: 760px) { .ud-guides { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .ud-guides { grid-template-columns: repeat(3, 1fr); } }
.ud-guides li { margin: 0; }
.ud-guides a { display: flex; flex-direction: column; height: 100%; padding: 1.75rem; border-radius: var(--radius-lg); background: var(--shell); border: 1px solid var(--sand); color: var(--ink); text-decoration: none; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.ud-guides a:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--ink); }
.ud-guides .ud-tag { align-self: flex-start; }
.ud-guides h2, .ud-guides h3 { font-size: 1.625rem; margin: 0 0 .75rem; }
.ud-guides p { font-size: .9375rem; color: var(--ink-soft); margin-bottom: 1.25rem; }
.ud-guides__img { margin: -1.75rem -1.75rem 1.5rem; aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.ud-guides__img img { width: 100%; height: 100%; object-fit: cover; }
.ud-chips { max-width: var(--wide); margin: 0 auto; padding: 0 var(--gutter); display: flex; flex-wrap: wrap; gap: .5rem; }
.ud-chips a { padding: .6rem 1.1rem; border-radius: 999px; border: 1px solid var(--sand-deep); color: var(--ink); text-decoration: none; font-weight: 600; font-size: .875rem; }
.ud-chips a:hover { border-color: var(--palm); color: var(--palm); }
.ud-chips a[aria-current] { background: var(--palm); color: #fff; border-color: var(--palm); }
.navigation.pagination { margin-top: 3rem; }
.nav-links { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.page-numbers { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; padding: 0 1rem; border-radius: 999px; border: 1px solid var(--sand-deep); color: var(--ink); text-decoration: none; font-weight: 700; }
.page-numbers.current { background: var(--palm); color: #fff; border-color: var(--palm); }

/* ---------- Article ---------- */
.ud-article__head { max-width: calc(var(--text) + 2 * var(--gutter)); margin: 0 auto; padding: clamp(2rem, 5vw, 4rem) var(--gutter) 2rem; }
.ud-article__head h1 { font-size: clamp(2.375rem, 1.5rem + 3.4vw, 4rem); }
.ud-article__meta { font-size: .875rem; color: var(--ink-soft); font-weight: 600; }
.ud-article__img { max-width: var(--wide); margin: 0 auto 3rem; padding: 0 var(--gutter); }
.ud-article__img img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.ud-article__body { font-size: 1.125rem; }
.ud-article__body > :last-child { margin-bottom: 3rem !important; }
.ud-article__cta { max-width: var(--text); margin: 0 auto var(--section); padding: 2.25rem; border-radius: var(--radius-lg); background: var(--palm); color: rgba(255,255,255,.82); }
@media (max-width: 780px) { .ud-article__cta { margin-left: var(--gutter); margin-right: var(--gutter); } }
.ud-article__cta h2 { color: #fff; font-size: 2rem; margin: 0 0 .5rem; }
.ud-article__cta > div { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.ud-article__cta .ud-btn--solid { background: var(--shell); color: var(--palm); }
.ud-article__cta .ud-btn--outline { color: #fff; border-color: rgba(255,255,255,.5); }
.ud-related { background: var(--shell); }
.ud-related > h2 { margin-bottom: 2rem; }

/* Tables inside content */
.ud-content .wp-block-table table { font-size: .9375rem; background: var(--shell); border-radius: var(--radius); overflow: hidden; }
.ud-content .wp-block-table th, .ud-content .wp-block-table td { border: 1px solid var(--sand); padding: .75rem 1rem; text-align: left; }
.ud-content .wp-block-table thead th { background: var(--sand); }
.ud-content .wp-block-table { overflow-x: auto; margin: 0 auto 2rem; }

/* FAQ (core Details block) */
.wp-block-details { border-top: 1px solid var(--sand); padding: 0; margin: 0 auto !important; }
.wp-block-details:last-of-type { border-bottom: 1px solid var(--sand); }
.wp-block-details summary { list-style: none; cursor: pointer; padding: 1.35rem 3rem 1.35rem 0; position: relative; font-family: var(--f-display); font-size: clamp(1.3125rem, 1.15rem + .6vw, 1.625rem); font-weight: 500; line-height: 1.25; }
.wp-block-details summary::-webkit-details-marker { display: none; }
.wp-block-details summary::after { content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%); font-family: var(--f-body); font-weight: 400; font-size: 1.75rem; color: var(--bronze); transition: transform .2s var(--ease); }
.wp-block-details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.wp-block-details > :not(summary) { color: var(--ink-soft); }
.wp-block-details > :last-child { padding-bottom: 1.35rem; margin-bottom: 0; }

/* Quote / pull */
.ud-content .wp-block-quote { border-left: 2px solid var(--bronze); padding-left: 1.5rem; margin: 2rem auto; font-family: var(--f-display); font-size: 1.5rem; line-height: 1.35; }

/* ---------- Closing CTA ---------- */
.ud-cta { padding: 0 var(--gutter) var(--section); }
.ud-cta__inner {
	position: relative; overflow: hidden; max-width: var(--wide); margin: 0 auto; border-radius: calc(var(--radius-lg) + 6px);
	background: var(--palm); color: rgba(255,255,255,.8); padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 6vw, 5rem); text-align: center;
}
.ud-cta__inner::before {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background: radial-gradient(60% 80% at 100% 0%, rgba(239,162,126,.22), transparent 60%), radial-gradient(50% 70% at 0% 100%, rgba(94,138,123,.3), transparent 60%);
}
.ud-cta__inner > * { position: relative; }
.ud-cta h2 { color: #fff; max-width: 16ch; margin: 0 auto 1rem; }
.ud-cta p { max-width: 34rem; margin: 0 auto 2.25rem; font-size: 1.125rem; }
.ud-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
@media (max-width: 639px) { .ud-cta__actions > * { flex: 1 1 100%; } }
.ud-btn--ghost-light.ud-btn { text-decoration: none; }

/* ---------- Stat strip ---------- */
.ud-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--sand); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--sand); }
@media (min-width: 900px) { .ud-stats { grid-template-columns: repeat(4, 1fr); } }
.ud-stats > div { background: var(--shell); padding: 1.75rem; }
.ud-stats > div p { margin: 0; font-size: .875rem; color: var(--ink-soft); }
.ud-stats > div p:first-child { font-family: var(--f-display); font-size: 2.5rem; line-height: 1; color: var(--ink); margin-bottom: .5rem; }

/* ---------- Footer ---------- */
.ud-footer { background: var(--charcoal); color: rgba(255,255,255,.7); font-size: .9375rem; padding: clamp(4rem, 8vw, 6rem) var(--gutter) 6rem; }
.ud-footer a { color: rgba(255,255,255,.85); text-decoration: none; }
.ud-footer a:not(.ud-btn):hover { color: #fff; text-decoration: underline; }
.ud-footer__inner { max-width: var(--wide); margin: 0 auto; display: grid; gap: 3rem; }
@media (min-width: 760px) { .ud-footer__inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .ud-footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.ud-footer__brand p { margin: 1.5rem 0; max-width: 26rem; }
.ud-footer__social { list-style: none; padding: 0; display: flex; gap: 1.25rem; }
.ud-footer h2 { font: 700 .75rem/1 var(--f-body); letter-spacing: .18em; text-transform: uppercase; color: var(--bronze-light); margin: 0 0 1.25rem; }
.ud-footer__col h2 + ul + h2 { margin-top: 2rem; }
.ud-footer ul { list-style: none; padding: 0; margin: 0; }
.ud-footer li { margin-bottom: .6rem; }
.ud-footer__contact p, .ud-footer__contact address { margin-bottom: 1rem; }
.ud-footer__phone { font-family: var(--f-display); font-size: 1.75rem; color: #fff !important; }
.ud-footer__contact .ud-btn { margin-top: .5rem; }
.ud-footer__areas { max-width: var(--wide); margin: 3.5rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: .5rem .75rem; font-size: .875rem; }
.ud-footer__areas > span:first-child { font-weight: 700; color: var(--bronze-light); margin-right: .25rem; }
.ud-footer__areas span[aria-hidden] { color: rgba(255,255,255,.3); }
.ud-footer__legal { max-width: var(--wide); margin: 1.5rem auto 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .8125rem; color: rgba(255,255,255,.5); }
.ud-footer__legal p { margin: 0; }
.ud-footer__legal ul { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.ud-footer__legal li { margin: 0; }
.ud-footer .ud-brand { margin: 0; }

/* Mobile quick-contact bar */
.ud-mobilebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1.6fr; gap: .5rem; padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom)); background: rgba(15,42,44,.96); backdrop-filter: blur(8px); }
.ud-mobilebar a { display: flex; align-items: center; justify-content: center; min-height: 48px; border-radius: 999px; font-weight: 700; font-size: .9375rem; text-decoration: none; }
.ud-mobilebar__call { color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.ud-mobilebar__quote { background: var(--shell); color: var(--palm); }
@media (min-width: 900px) { .ud-mobilebar { display: none; } .ud-footer { padding-bottom: 3rem; } }

/* Utility */
.ud-center { text-align: center; }
.ud-center .ud-eyebrow { justify-content: center; }
.ud-mt-0 { margin-top: 0 !important; }
.ud-actions, .ud-content .wp-block-buttons { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.ud-content .wp-block-buttons > .wp-block-button { margin: 0; }
.wp-block-image { margin: 0 auto 2rem; }
.wp-block-image img { border-radius: var(--radius); }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
@media print {
	.ud-header, .ud-footer, .ud-mobilebar, .ud-cta { display: none; }
}

/* Buttons inside dark areas keep their own colors. */
.ud-footer .ud-btn--light, .ud-section--dark .ud-btn--light, .ud-section--palm .ud-btn--light { color: var(--palm); }
.ud-footer .ud-btn--light:hover { color: var(--palm-deep); }
.ud-section--dark a.ud-btn--ghost-light, .ud-section--palm a.ud-btn--ghost-light, .ud-footer a.ud-btn--ghost-light { color: #fff; }

/* Photos shown uncropped (collages, graphics with text). */
.ud-photo--natural img { aspect-ratio: auto !important; height: auto !important; object-fit: contain; }

/* Before / after pair */
.ud-ba { display: grid; gap: 1rem; }
@media (min-width: 900px) { .ud-ba { grid-template-columns: 1fr 1fr; align-items: start; } }
.ud-ba figure { position: relative; }
.ud-ba__label { position: absolute; top: 1rem; left: 1rem; z-index: 1; font: 700 .6875rem/1 var(--f-body); letter-spacing: .16em; text-transform: uppercase; background: var(--shell); color: var(--palm); padding: .55em .9em; border-radius: 999px; }
.ud-ba__label--after { background: var(--palm); color: #fff; }
.ud-ba > div { position: relative; }

/* Client Portal link (header utility link on desktop, full-width in the mobile menu). */
.ud-header__portal { display: none; font-weight: 600; font-size: .875rem; color: var(--ink); text-decoration: none; white-space: nowrap; padding: .6rem .25rem; border-radius: 6px; }
.ud-header__portal:hover { color: var(--palm); text-decoration: underline; text-underline-offset: .25em; }
.ud-header--over:not(.is-scrolled):not(.is-open) .ud-header__portal { color: #fff; }
@media (min-width: 1180px) { .ud-header__portal { display: inline-block; } }
.ud-nav__portal { display: flex; align-items: center; justify-content: center; min-height: 52px; margin-top: .75rem; border: 1.5px solid var(--ink); border-radius: 999px; color: var(--ink); font-weight: 700; text-decoration: none; }
.ud-nav__portal:hover { background: var(--ink); color: var(--shell); }
/* Header gets a little more room than page content so nav + portal + phone + CTA fit on one line. */
.ud-header__inner { max-width: calc(1400px + 2 * var(--gutter)); }
.ud-header__actions .ud-btn { white-space: nowrap; }

/* Fix: backdrop-filter on the header creates a containing block for the fixed mobile menu, clipping it to the
   header box. Drop the blur while the menu is open (solid background instead) so the panel fills the screen. */
.ud-header.is-open { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--limestone); }
@media (max-width: 600px) { .admin-bar .ud-nav { top: var(--header-h); } }

/* Dark panels inside dark sections (Projects "materials" grid). */
.ud-panel--dark { background: #16393B; border-color: #24494A; }

/* ===================== Customer-acquisition phase components ===================== */

/* Quote form: request-type cards */
.ud-types .ud-hint { margin: -.5rem 0 1rem; }
.ud-types__grid { display: grid; gap: .6rem; grid-template-columns: 1fr; }
@media (min-width: 520px) { .ud-types__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .ud-types__grid { grid-template-columns: repeat(3, 1fr); } }
.ud-type { position: relative; display: block; cursor: pointer; }
.ud-type input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.ud-type__body { display: flex; flex-direction: column; gap: .2rem; min-height: 64px; padding: .85rem 1rem; border: 1.5px solid var(--sand-deep); border-radius: 12px; background: #fff; transition: border-color .15s, background-color .15s, box-shadow .15s; }
.ud-type__body strong { font-size: .9375rem; }
.ud-type__body small { font-size: .8125rem; color: var(--ink-soft); }
.ud-type:hover .ud-type__body { border-color: var(--palm); }
.ud-type input:checked + .ud-type__body { border-color: var(--palm); background: var(--sage-soft); box-shadow: inset 0 0 0 1px var(--palm); }
.ud-type input:focus-visible + .ud-type__body { outline: 3px solid var(--bronze); outline-offset: 2px; }
.ud-routed > [hidden], .ud-field[hidden] { display: none !important; }
.ud-field--full { grid-column: 1 / -1; }
.ud-checks { border: 0; padding: 0; margin: 0 0 1.1rem; }
.ud-checks legend { font-weight: 700; font-size: .875rem; margin-bottom: .5rem; padding: 0; font-family: var(--f-body); }
.ud-checks__grid { display: grid; gap: .4rem .75rem; }
@media (min-width: 640px) { .ud-checks__grid { grid-template-columns: 1fr 1fr; } }
.ud-check { display: flex; align-items: center; gap: .6rem; min-height: 44px; padding: .4rem .75rem; border: 1px solid var(--sand); border-radius: 10px; background: #fff; cursor: pointer; font-size: .9375rem; font-weight: 500; }
.ud-check input { width: 20px; height: 20px; accent-color: var(--palm); flex: none; margin: 0; }
.ud-check:has(input:checked) { border-color: var(--palm); background: var(--sage-soft); }

/* Photo upload */
.ud-photos { position: relative; }
.ud-photos input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; }
.ud-photos__drop { display: flex !important; flex-direction: column; align-items: center; text-align: center; gap: .35rem; padding: 1.5rem 1rem; border: 2px dashed var(--sage); border-radius: 14px; background: var(--limestone); cursor: pointer; transition: border-color .15s, background-color .15s; }
.ud-photos__drop:hover { border-color: var(--palm); background: var(--sage-soft); }
.ud-photos:focus-within .ud-photos__drop { outline: 3px solid var(--bronze); outline-offset: 2px; }
.ud-photos__drop .ud-i { width: 32px; height: 32px; color: var(--palm); }
.ud-photos__title { font-weight: 700; font-size: 1rem; color: var(--ink); }
.ud-photos__title span { font-weight: 500; color: var(--ink-soft); }
.ud-photos__hint { font-size: .8125rem; font-weight: 500; color: var(--ink-soft); max-width: 34rem; }
.ud-photos__list { margin: .5rem 0 0; font-weight: 700; color: var(--palm); font-size: .875rem; }
.ud-photos__list:empty { display: none; }

/* Guided choosers (Solve My Yard Problem, material finder) */
.ud-chooser__ask { font-family: var(--f-display); font-size: 1.75rem; margin-bottom: 1rem; }
.ud-chooser__choices { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .6rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .ud-chooser__choices { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .ud-chooser__choices { grid-template-columns: repeat(3, 1fr); } }
.ud-chooser__choices li { margin: 0; }
.ud-choice { width: 100%; display: flex; align-items: center; gap: .75rem; min-height: 60px; padding: .9rem 1.1rem; text-align: left; font: 700 .9688rem/1.3 var(--f-body); color: var(--ink); background: var(--shell); border: 1.5px solid var(--sand); border-radius: 14px; cursor: pointer; transition: border-color .15s, background-color .15s, transform .15s; }
.ud-choice .ud-i { width: 24px; height: 24px; color: var(--palm); }
.ud-choice:hover { border-color: var(--palm); transform: translateY(-1px); }
.ud-choice[aria-pressed="true"] { background: var(--palm); border-color: var(--palm); color: #fff; }
.ud-choice[aria-pressed="true"] .ud-i { color: var(--bronze-light); }
.ud-chooser:not(.is-enhanced) .ud-chooser__choices { display: none; }
.ud-chooser__panel { background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 1rem; box-shadow: var(--shadow); scroll-margin-top: calc(var(--header-h) + 24px); }
.ud-chooser__panel:focus { outline: none; }
.ud-chooser__panel h3 { margin-top: 0; font-size: clamp(1.75rem, 1.4rem + 1vw, 2.25rem); }
.ud-chooser__panel h4 { font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase; color: var(--bronze); margin: 0 0 .75rem; }
.ud-chooser__cols { display: grid; gap: 1.5rem; margin: 1.5rem 0; }
@media (min-width: 800px) { .ud-chooser__cols { grid-template-columns: 1fr 1fr; } }
.ud-chooser__note { padding: 1rem 1.25rem; border-left: 3px solid var(--bronze); background: var(--limestone); border-radius: 0 var(--radius) var(--radius) 0; font-size: .9375rem; }

/* Compact material list */
.ud-mini { list-style: none; padding: 0; margin: 1.25rem 0; display: grid; gap: .6rem; }
@media (min-width: 640px) { .ud-mini { grid-template-columns: 1fr 1fr; } }
.ud-mini li { margin: 0; }
.ud-mini a { display: flex; align-items: center; gap: .85rem; padding: .6rem; border: 1px solid var(--sand); border-radius: 12px; background: #fff; color: var(--ink); text-decoration: none; }
.ud-mini a:hover { border-color: var(--palm); }
.ud-mini__img { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; flex: none; background: var(--sand); }
.ud-mini__img img, .ud-mini__img .ud-ph { width: 100%; height: 100%; object-fit: cover; min-height: 0; padding: 0; }
.ud-mini__text { display: flex; flex-direction: column; gap: .15rem; }
.ud-mini__text strong { font-size: .9375rem; }
.ud-mini .ud-price { margin: 0; padding: 0; border: 0; }
.ud-mini .ud-price strong { font-size: 1.125rem; }

/* Problem chips */
.ud-problem-links { list-style: none; padding: 0; margin: 0 auto; display: flex; flex-wrap: wrap; gap: .6rem; }
.ud-problem-links li { margin: 0; }
.ud-problem-links a { display: inline-flex; align-items: center; gap: .55rem; min-height: 48px; padding: .6rem 1.1rem; border-radius: 999px; background: var(--shell); border: 1px solid var(--sand-deep); color: var(--ink); text-decoration: none; font-weight: 600; font-size: .9375rem; transition: border-color .15s, background-color .15s; }
.ud-problem-links a:hover { border-color: var(--palm); background: var(--sage-soft); color: var(--ink); }
.ud-problem-links .ud-i { color: var(--palm); }

/* Single review quote */
.ud-quote { margin: 0; padding: clamp(1.5rem, 3vw, 2.25rem); background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); }
.ud-quote .ud-stars .ud-i { width: 18px; height: 18px; color: var(--bronze); }
.ud-quote blockquote { margin: .9rem 0; font-family: var(--f-display); font-size: clamp(1.375rem, 1.2rem + .6vw, 1.75rem); line-height: 1.35; }
.ud-quote blockquote p { margin: 0; }
.ud-quote figcaption { font-weight: 700; font-size: .875rem; }
.ud-quote figcaption span { font-weight: 500; color: var(--ink-soft); }

/* Site notices (scheduling / storm mode) */
.ud-notice { background: var(--palm); color: #fff; font-size: .875rem; }
.ud-notice--storm { background: var(--bronze); }
.ud-notice__inner { max-width: calc(1400px + 2 * var(--gutter)); margin: 0 auto; padding: .55rem var(--gutter); display: flex; flex-wrap: wrap; align-items: center; gap: .4rem .6rem; }
.ud-notice a { color: #fff; font-weight: 700; }
.ud-notice .ud-i { width: 16px; height: 16px; }

/* Project cards */
@media (min-width: 1024px) { .ud-cards--projects { grid-template-columns: repeat(3, 1fr); } }
/* Checkboxes inside routed fields: undo the generic text-input styling. */
.ud-field .ud-check input[type="checkbox"], .ud-check input[type="checkbox"] { -webkit-appearance: auto; appearance: auto; width: 20px; height: 20px; min-height: 0; padding: 0; border: 0; border-radius: 4px; background: none; box-shadow: none; }

/* ===================== Growth phase: next steps, link lists, area services ===================== */
.ud-next__grid { display: grid; gap: 1rem; }
@media (min-width: 900px) { .ud-next__grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); } }
.ud-next .ud-panel h3 { font-size: 1.375rem; margin-top: 0; }
.ud-panel--accent { border-color: var(--palm); box-shadow: inset 0 0 0 1px var(--palm); }
.ud-next__call { margin: .9rem 0 0; font-size: .9375rem; }
.ud-next__proof { margin-top: 2.5rem; }
.ud-next__proof h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.ud-linklist { list-style: none; padding: 0; margin: .75rem 0 0; display: grid; gap: .15rem; }
.ud-linklist li { margin: 0; }
.ud-linklist a { display: flex; align-items: center; min-height: 44px; padding: .35rem 0; border-bottom: 1px solid var(--sand); color: var(--ink); font-weight: 600; text-decoration: none; }
.ud-linklist a::after { content: "\2192"; margin-left: auto; padding-left: .75rem; color: var(--palm); }
.ud-linklist a:hover { color: var(--palm); }
.ud-svclist { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
@media (min-width: 700px) { .ud-svclist { grid-template-columns: 1fr 1fr; } }
.ud-svclist li { margin: 0; }
.ud-svclist a { display: flex; flex-direction: column; gap: .25rem; height: 100%; padding: 1.1rem 1.25rem; background: var(--shell); border: 1px solid var(--sand); border-radius: 14px; color: var(--ink); text-decoration: none; }
.ud-svclist a:hover { border-color: var(--palm); }
.ud-svclist strong { font-size: 1.0625rem; }
.ud-svclist span { font-size: .9375rem; color: var(--ink-soft); }
.ud-section--shell .ud-svclist a { background: #fff; }
.ud-trustline { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; margin: 1.25rem 0 0; font-size: .875rem; font-weight: 600; color: var(--ink-soft); }
.ud-trustline .ud-stars .ud-i { width: 16px; height: 16px; color: var(--bronze); }
.ud-jump { padding-top: 1.5rem !important; padding-bottom: 0 !important; }

/* ===================== Materials page polish (cards rendered with detail="1") ===================== */
.ud-cards--detail .ud-card__media { aspect-ratio: auto; height: 230px; }
@media (max-width: 639px) { .ud-cards--detail .ud-card__media { height: 220px; } }
.ud-cards--detail .ud-card__media img { object-position: center; }
.ud-cards--detail .ud-card__title { margin-bottom: .35rem; }
.ud-card__uses { margin: 0 0 .75rem !important; font-size: .8125rem !important; font-weight: 600; letter-spacing: .02em; color: var(--palm) !important; line-height: 1.5 !important; }
.ud-cards--detail .ud-price { display: flex; align-items: baseline; gap: .35rem; }
.ud-cards--detail .ud-price strong { font-size: 1.875rem; line-height: 1; letter-spacing: -.01em; }
.ud-cards--detail .ud-price__unit { font-size: .8125rem; font-weight: 500; color: var(--ink-soft); }
.ud-cards--detail .ud-card__more { margin-top: 1rem; }
.ud-cards--detail .ud-card__link { transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.ud-cards--detail .ud-card__media img { transition: transform .7s var(--ease); }
@media (hover: hover) and (min-width: 1024px) {
	.ud-cards--detail .ud-card__link:hover { transform: translateY(-3px); box-shadow: 0 2px 6px rgba(21, 35, 34, .06), 0 22px 48px -22px rgba(21, 35, 34, .30); }
	.ud-cards--detail .ud-card__link:hover .ud-card__media img { transform: scale(1.03); }
}
@media (hover: none), (max-width: 1023px) {
	.ud-cards--detail .ud-card__link:hover { transform: none; }
	.ud-cards--detail .ud-card__link:hover .ud-card__media img { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
	.ud-cards--detail .ud-card__link, .ud-cards--detail .ud-card__media img { transition: none; }
}

/* "Not sure which material" band below the material grid */
.ud-choose { display: grid; gap: 1.5rem; align-items: center; padding: clamp(1.75rem, 4vw, 2.75rem); background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
@media (min-width: 900px) { .ud-choose { grid-template-columns: 1.4fr 1fr; gap: 2.5rem; } }
.ud-choose h2 { margin: 0 0 .6rem; font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.375rem); }
.ud-choose p:last-child { margin-bottom: 0; color: var(--ink-soft); }
.ud-choose__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
@media (min-width: 900px) { .ud-choose__actions { justify-content: flex-end; } }
.ud-cards--detail .ud-tag { align-self: flex-start; }

/* ===================== Easy size guide (drawn objects + to-scale bar; no photos) ===================== */
.ud-sizes { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
@media (min-width: 800px) { .ud-sizes:not(.ud-sizes--one) { grid-template-columns: 1fr 1fr; } }
.ud-size { display: flex; flex-direction: column; gap: 1.1rem; padding: clamp(1.4rem, 3vw, 2rem); background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.ud-size__head h3 { margin: .15rem 0 0; font-size: 1.75rem; }
.ud-size__label { margin: 0; font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--bronze); }
.ud-size__objs { display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 4vw, 2.25rem); padding: 1rem; background: var(--limestone); border-radius: var(--radius); color: var(--palm); }
.ud-size__obj { margin: 0; display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.ud-size__obj svg { width: 64px; height: 64px; }
.ud-size__obj figcaption { font-size: .8125rem; font-weight: 700; color: var(--ink); }
.ud-size__arrow { font-size: 1.5rem; color: var(--bronze); line-height: 1; padding-bottom: 1.4rem; }
.ud-size__bar { padding-top: .25rem; }
.ud-size__track { position: relative; height: 10px; border-radius: 999px; background: var(--sand); }
.ud-size__range { position: absolute; top: 0; bottom: 0; border-radius: 999px; background: var(--palm); }
.ud-size__over { position: absolute; top: 0; bottom: 0; right: 0; border-radius: 0 999px 999px 0; background: repeating-linear-gradient(90deg, rgba(14, 81, 87, .28) 0 6px, transparent 6px 10px); }
.ud-size__ticks { position: relative; height: 1.2rem; margin-top: .35rem; font-size: .6875rem; color: var(--ink-soft); }
.ud-size__ticks span { position: absolute; transform: translateX(-50%); }
.ud-size__ticks span:first-child { transform: none; }
.ud-size__ticks span:last-child { transform: translateX(-100%); }
.ud-size__text { margin: 0; font-size: .9688rem; color: var(--ink-soft); line-height: 1.6; }
.ud-size__foot { margin-top: auto; display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem 1rem; padding-top: 1rem; border-top: 1px solid var(--sand); }
.ud-size__foot .ud-price strong { font-size: 1.625rem; }
.ud-size__note { max-width: var(--wide); margin: 1.25rem auto 0 !important; font-size: .875rem; color: var(--ink-soft); }
.ud-card__size { margin: -.35rem 0 .75rem !important; font-size: .8125rem !important; line-height: 1.5 !important; color: var(--ink) !important; }
.ud-card__media--size { display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 4vw, 2rem); background: var(--limestone); color: var(--palm); }
.ud-card__media--size .ud-size__obj svg { width: 72px; height: 72px; }

/* ===================== Best-in-Class planning layer ===================== */

/* Material explorer */
.ud-explorer__intro { max-width: var(--text); margin: 0 0 1.25rem; color: var(--ink-soft); }
.ud-explorer__intro strong { color: var(--ink); }
.ud-explorer__scale { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; margin-bottom: 1.25rem; }
@media (min-width: 800px) { .ud-explorer__scale { grid-template-columns: repeat(4, 1fr); } }
.ud-explorer__step { display: flex; flex-direction: column; align-items: flex-start; gap: .1rem; min-height: 56px; padding: .6rem .9rem; border: 1.5px solid var(--sand); border-radius: 12px; background: var(--shell); color: var(--ink); font: 700 .9375rem/1.2 var(--f-body); text-align: left; cursor: pointer; }
.ud-explorer__step small { font-weight: 500; font-size: .8125rem; color: var(--ink-soft); }
.ud-explorer__step:hover { border-color: var(--palm); }
.ud-explorer__step[aria-pressed="true"] { background: var(--palm); border-color: var(--palm); color: #fff; }
.ud-explorer__step[aria-pressed="true"] small { color: rgba(255,255,255,.8); }
.ud-explorer__step:focus-visible { outline: 3px solid var(--bronze); outline-offset: 2px; }
.ud-sizes--four { grid-template-columns: 1fr; }
@media (min-width: 700px) { .ud-sizes--four { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .ud-sizes--four { grid-template-columns: repeat(4, 1fr); } }
.ud-size { transition: opacity .25s var(--ease), border-color .25s var(--ease); }
.ud-size.is-picked { border-color: var(--palm); box-shadow: inset 0 0 0 1px var(--palm), var(--shadow); }
.ud-size.is-faded { opacity: .55; }
@media (prefers-reduced-motion: reduce) { .ud-size { transition: none; } }
.ud-size-strip { margin: 0 0 1.5rem; padding: 1rem 1.25rem; background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius); }
.ud-size-strip__row { display: flex; align-items: flex-end; justify-content: space-between; gap: .5rem; overflow-x: auto; }
.ud-size-strip__item { display: flex; flex-direction: column; align-items: center; gap: .4rem; min-width: 52px; }
.ud-size-strip__item i { display: block; border-radius: 50%; border: 2px solid var(--palm); background: var(--sage-soft); }
.ud-size-strip__item b { font-size: .75rem; font-weight: 700; white-space: nowrap; }
.ud-size-strip__note { margin: .6rem 0 0; font-size: .75rem; color: var(--ink-soft); }

/* Put it in human terms */
.ud-human { display: grid; gap: 1.25rem; align-items: center; margin-top: 2rem; padding: clamp(1.25rem, 3vw, 1.75rem); background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); }
@media (min-width: 560px) { .ud-human { grid-template-columns: 160px 1fr; } }
.ud-cube { width: 100%; max-width: 180px; color: var(--palm); }
.ud-human__fact { font-size: 1.125rem; margin: 0 0 .5rem; }
.ud-human p:last-child { margin-bottom: 0; }

/* Material cards: secondary actions */
.ud-cards--detail .ud-card { display: flex; flex-direction: column; border-radius: var(--radius-lg); transition: transform .35s var(--ease), box-shadow .35s var(--ease), opacity .25s var(--ease); }
.ud-cards--detail .ud-card__link { flex: 1; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
@media (hover: hover) and (min-width: 1024px) {
	.ud-cards--detail .ud-card__link:hover { transform: none; box-shadow: none; }
	.ud-cards--detail .ud-card:hover { transform: translateY(-3px); box-shadow: 0 2px 6px rgba(21, 35, 34, .06), 0 22px 48px -22px rgba(21, 35, 34, .30); }
}
.ud-card__actions { display: flex; flex-wrap: wrap; align-items: center; gap: .25rem 1.25rem; padding: .6rem 1.5rem .8rem; background: var(--shell); border: 1px solid var(--sand); border-top: 1px dashed var(--sand); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.ud-card__act { display: inline-flex; align-items: center; min-height: 44px; padding: 0; background: none; border: 0; font: 600 .875rem/1 var(--f-body); color: var(--palm); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.ud-card__act:hover { color: var(--ink); }
.ud-card__msg { flex-basis: 100%; font-size: .8125rem; color: var(--ink-soft); }
.ud-card__msg:empty { display: none; }
.ud-cards--detail .is-dim { opacity: .38; }
.ud-cards--detail .is-match .ud-card__link, .ud-cards--detail .is-match .ud-card__actions { border-color: var(--palm); }

/* Project-first filter */
.ud-mfilter-wrap { padding-bottom: 0 !important; }
.ud-mfilter__ask { font-family: var(--f-display); font-size: 1.625rem; margin: 0 0 .75rem; }
.ud-mfilter__chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.ud-mfilter__chip, .ud-mfilter__reset { display: inline-flex; align-items: center; min-height: 44px; padding: .5rem 1.05rem; border-radius: 999px; border: 1px solid var(--sand-deep); background: var(--shell); color: var(--ink); font: 600 .9375rem/1.2 var(--f-body); text-decoration: none; cursor: pointer; }
.ud-mfilter__chip:hover { border-color: var(--palm); color: var(--ink); }
.ud-mfilter__chip[aria-pressed="true"] { background: var(--palm); border-color: var(--palm); color: #fff; }
.ud-mfilter__chip--help { border-style: dashed; }
.ud-mfilter__reset { background: transparent; text-decoration: underline; border-color: transparent; }
.ud-mfilter__status { margin: .9rem 0 0; font-size: .9375rem; color: var(--ink-soft); max-width: var(--text); }
.ud-mfilter__status:empty { display: none; }

/* Compare */
.ud-compare__pick { display: grid; gap: 1rem; }
@media (min-width: 640px) { .ud-compare__pick { grid-template-columns: 1fr 1fr; } }
.ud-compare__out { margin: 1rem 0; }
.ud-compare__table { width: 100%; border-collapse: collapse; background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); overflow: hidden; }
.ud-compare__table th, .ud-compare__table td { text-align: left; vertical-align: top; padding: .85rem 1rem; border-top: 1px solid var(--sand); font-size: .9375rem; }
.ud-compare__table thead th { border-top: 0; font-family: var(--f-display); font-size: 1.375rem; font-weight: 600; }
.ud-compare__table tbody th { width: 22%; font-size: .8125rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.ud-compare__add { display: inline-flex; min-height: 44px; align-items: center; padding: 0; background: none; border: 0; color: var(--palm); font-weight: 700; text-decoration: underline; cursor: pointer; }
@media (max-width: 639px) {
	.ud-compare__table thead { display: none; }
	.ud-compare__table tr { display: block; border-top: 1px solid var(--sand); padding: .5rem 0; }
	.ud-compare__table th, .ud-compare__table td { display: block; border: 0; padding: .35rem 1rem; width: auto; }
	.ud-compare__table td::before { content: attr(data-label); display: block; font-weight: 700; font-size: .8125rem; color: var(--ink); }
}

/* Delivery checklist */
.ud-dcheck__list { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: .6rem; }
.ud-dcheck__list li { margin: 0; }
.ud-dcheck__list fieldset { margin: 0; padding: .9rem 1rem; border: 1px solid var(--sand); border-radius: var(--radius); background: #fff; }
.ud-dcheck__list legend { float: left; width: 100%; padding: 0; margin-bottom: .5rem; font-weight: 600; font-size: .9375rem; }
.ud-dcheck__opts { clear: both; display: flex; flex-wrap: wrap; gap: .5rem 1rem; }
.ud-dcheck__opts label { display: inline-flex; align-items: center; gap: .4rem; min-height: 44px; font-size: .9375rem; cursor: pointer; }
.ud-dcheck__opts input { width: 20px; height: 20px; accent-color: var(--palm); margin: 0; }
.ud-dcheck__help { padding: 1rem 1.25rem; margin-bottom: 1rem; border-left: 3px solid var(--bronze); background: var(--limestone); border-radius: 0 var(--radius) var(--radius) 0; }

/* Home: what brought you here */
.ud-intent__choices { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1rem; }
.ud-intent__btn { display: inline-flex; align-items: center; min-height: 48px; padding: .6rem 1.2rem; border-radius: 999px; border: 1.5px solid var(--sand-deep); background: var(--shell); color: var(--ink); font-weight: 700; font-size: .9688rem; text-decoration: none; }
.ud-intent__btn:hover { border-color: var(--palm); color: var(--ink); }
.ud-intent__btn[aria-pressed="true"] { background: var(--palm); border-color: var(--palm); color: #fff; }
.ud-intent__panel { min-height: 13.5rem; padding: 1.25rem 1.5rem; background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); }
@media (min-width: 700px) { .ud-intent__panel { min-height: 11rem; } }
.ud-intent__rec p:first-child { margin-top: 0; font-size: 1.0625rem; }
.ud-intent__rec .ud-linklist { max-width: 32rem; }
.ud-intent__quote { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.25rem; margin: 1rem 0 0; }
.ud-intent__reset { background: none; border: 0; padding: 0; min-height: 44px; cursor: pointer; }
.ud-intent__default { margin: 0; color: var(--ink-soft); }

/* Passport */
.ud-passport { padding: clamp(1.25rem, 3vw, 2rem); background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.ud-section--shell .ud-passport { background: #fff; }
.ud-passport__head h2 { margin: .15rem 0 .4rem; font-size: clamp(1.625rem, 1.3rem + 1vw, 2.125rem); }
.ud-passport__lede { font-size: .875rem; color: var(--ink-soft); }
.ud-passport__empty { color: var(--ink-soft); }
.ud-passport__h { font-size: 1.25rem; margin: 1rem 0 .5rem; }
.ud-passport__items { list-style: none; padding: 0; margin: 0; }
.ud-passport__item { padding: .85rem 0; border-top: 1px solid var(--sand); margin: 0; }
.ud-passport__name { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .25rem 1rem; }
.ud-passport__price { font-size: .875rem; color: var(--ink-soft); }
.ud-passport__edit { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; margin-top: .5rem; font-size: .875rem; }
.ud-passport__edit input { width: 8rem; min-height: 44px; }
.ud-passport__rm { min-height: 44px; background: none; border: 0; padding: 0; cursor: pointer; }
.ud-passport__calc, .ud-passport__qty { margin: .35rem 0 0; font-size: .8125rem; color: var(--ink-soft); }
.ud-passport__line { margin: .5rem 0; font-size: .9375rem; }
.ud-plan-summary { margin: 0 0 1.5rem; padding: 1rem 1.25rem; border: 1px solid var(--palm); border-radius: var(--radius); background: var(--sage-soft); }
.ud-plan-summary .ud-eyebrow { margin-bottom: .25rem; }

/* Planner */
.ud-planner__progress { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; grid-template-columns: repeat(5, 1fr); gap: .35rem; counter-reset: none; }
.ud-planner__progress li { margin: 0; display: flex; flex-direction: column; gap: .35rem; font-size: .75rem; color: var(--ink-soft); }
.ud-planner__progress li::before { content: ""; height: 5px; border-radius: 999px; background: var(--sand); }
.ud-planner__progress li.is-done::before, .ud-planner__progress li.is-now::before { background: var(--palm); }
.ud-planner__progress li span { display: none; }
.ud-planner__progress li.is-now { color: var(--ink); font-weight: 700; }
@media (max-width: 639px) { .ud-planner__progress b { display: none; } .ud-planner__progress li.is-now b { display: inline; position: absolute; margin-top: 12px; } .ud-planner__progress { margin-bottom: 2.5rem; } }
.ud-planner__step { padding: clamp(1.25rem, 3vw, 2rem); background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); margin-bottom: 1rem; }
.ud-planner.is-enhanced .ud-planner__step { margin-bottom: 0; }
.ud-planner__step h2 { font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem); margin-top: 0; }
.ud-planner__step h2:focus { outline: none; }
.ud-planner__n { display: block; font: 700 .75rem/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase; color: var(--bronze); margin-bottom: .5rem; }
.ud-planner__nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }
.ud-planner__nav [data-planner-next]:only-child { margin-left: auto; }
.ud-planner__more { margin-top: 1.25rem; }
.ud-planner__more summary { cursor: pointer; font-weight: 700; min-height: 44px; display: flex; align-items: center; }

/* Project journey */
.ud-journey { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; counter-reset: none; }
@media (min-width: 700px) { .ud-journey { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .ud-journey { grid-template-columns: repeat(6, 1fr); } }
.ud-journey__step { position: relative; margin: 0; padding: 1.25rem; background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); }
.ud-section--shell .ud-journey__step { background: #fff; }
.ud-journey__n { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; background: var(--palm); color: #fff; font-weight: 700; font-size: .875rem; margin-bottom: .75rem; }
.ud-journey__step h3 { font-size: 1.375rem; margin: 0 0 .4rem; }
.ud-journey__step p { font-size: .9063rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }
.ud-journey__note { margin-top: 1rem !important; }

/* Landscape Lab */
.ud-labgroups { display: grid; gap: 2rem; }
@media (min-width: 900px) { .ud-labgroups { grid-template-columns: 1fr 1fr; } }
.ud-labgroup h3 { font-size: 1.375rem; margin: 0 0 .75rem; }
.ud-labcards { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.ud-labcards li { margin: 0; }
.ud-labcards a { display: flex; flex-direction: column; gap: .2rem; padding: 1rem 1.2rem; background: #fff; border: 1px solid var(--sand); border-radius: 14px; color: var(--ink); text-decoration: none; }
.ud-labcards a:hover { border-color: var(--palm); color: var(--ink); }
.ud-labcards strong { font-size: 1.0625rem; }
.ud-labcards strong::after { content: " \2192"; color: var(--palm); }
.ud-labcards span { font-size: .9063rem; color: var(--ink-soft); }

/* Search */
.ud-search__label { display: block; font-weight: 700; margin-bottom: .5rem; }
.ud-search__row { display: flex; gap: .5rem; }
.ud-search__row input { flex: 1; min-height: 52px; min-width: 0; }
.ud-search__out { margin-top: 1.25rem; }
.ud-search__intent { padding: 1rem 1.25rem; margin-bottom: 1rem; background: var(--sage-soft); border-radius: var(--radius); }
.ud-search__intent h3 { font-size: 1.25rem; margin: 0 0 .25rem; }
.ud-search__more { font-size: 1.125rem; margin: 1rem 0 .5rem; }
.ud-search__results { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.ud-search__results li { margin: 0; }
.ud-search__results a { display: flex; flex-direction: column; gap: .2rem; padding: .85rem 1rem; border: 1px solid var(--sand); border-radius: 12px; background: #fff; color: var(--ink); text-decoration: none; }
.ud-search__results a:hover { border-color: var(--palm); }
.ud-search__results .ud-tag { align-self: flex-start; }
.ud-search__results small { color: var(--ink-soft); font-size: .8438rem; }

/* Yard map */
.ud-yardmap { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 800px) { .ud-yardmap { grid-template-columns: 1.1fr 1fr; } }
.ud-yardmap__svg { width: 100%; max-width: 520px; color: var(--ink); background: var(--shell); border-radius: var(--radius-lg); }
.ud-yardmap__zone path { fill: var(--sage); fill-opacity: .18; stroke: var(--palm); stroke-width: 2; transition: fill-opacity .2s; }
.ud-yardmap__zone text { font-size: 10px; font-weight: 700; fill: var(--palm); }
.ud-yardmap__zone:hover path, .ud-yardmap__zone:focus path { fill-opacity: .45; }
.ud-yardmap__zone:focus { outline: none; }
.ud-yardmap__zone:focus-visible path { stroke: var(--bronze); stroke-width: 3; }

/* Show us */
.ud-showus { display: grid; gap: 1.25rem; align-items: center; padding: clamp(1.5rem, 4vw, 2.5rem); background: var(--sage-soft); border-radius: var(--radius-lg); }
@media (min-width: 900px) { .ud-showus { grid-template-columns: 1.4fr 1fr; } }
.ud-showus h2 { margin: .15rem 0 .5rem; }
.ud-showus p:last-child { margin-bottom: 0; }
.ud-showus .ud-actions { justify-content: flex-start; }

/* Before you order */
.ud-byo { max-width: var(--text); margin: 0 auto; padding: 0 1.25rem; background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); }
.ud-byo summary { cursor: pointer; min-height: 56px; display: flex; align-items: center; font-family: var(--f-display); font-size: 1.375rem; }
.ud-byo[open] { padding-bottom: 1rem; }

/* Calculator additions */
.ud-calc__mode { border: 0; padding: 0; margin: 0 0 1rem; }
.ud-calc__mode legend { font-weight: 700; font-size: .875rem; margin-bottom: .5rem; padding: 0; }
.ud-calc__mode .ud-check { display: inline-flex; margin: 0 .5rem .5rem 0; }
.ud-calc__depthrow { display: flex; align-items: center; gap: 1rem; }
.ud-calc__depthrow input[type="range"] { flex: 1; min-height: 44px; accent-color: var(--palm); padding: 0; border: 0; background: none; }
.ud-calc__depthrow input[type="number"] { width: 6.5rem; flex: none; }
.ud-calc__add { display: flex; flex-wrap: wrap; align-items: flex-end; gap: .75rem 1rem; margin: 1rem 0; padding: 1rem; border: 1px dashed var(--sand-deep); border-radius: var(--radius); }
.ud-calc__add .ud-field { margin: 0; }
.ud-calc__add input { width: 9rem; }
.ud-calc__add .ud-hint { flex-basis: 100%; margin: 0; }
.ud-calc__add .ud-hint:empty { display: none; }
.ud-calc__reverse { margin-top: 1.25rem; }
.ud-calc__reverse summary { cursor: pointer; font-weight: 700; min-height: 44px; display: flex; align-items: center; }
.ud-calc__revrow { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 1rem; }
.ud-calc__revrow .ud-field { margin: 0; }
.ud-calc__revrow input { width: 9rem; }
.ud-calc__revout { margin: 0; font-weight: 600; }

/* ===================== Verification & refinement phase ===================== */
.ud-myproject { display: inline-flex; align-items: center; gap: .35rem; min-height: 44px; padding: 0 .8rem; border: 1px solid var(--sand-deep); border-radius: 999px; background: var(--shell); color: var(--ink); font-weight: 700; font-size: .875rem; text-decoration: none; white-space: nowrap; }
.ud-myproject[hidden] { display: none; }
.ud-myproject:hover { border-color: var(--palm); color: var(--ink); }
.ud-myproject .ud-i { width: 18px; height: 18px; color: var(--palm); }
.ud-myproject__count:not(:empty) { display: inline-flex; align-items: center; justify-content: center; min-width: 1.35rem; height: 1.35rem; padding: 0 .3rem; border-radius: 999px; background: var(--palm); color: #fff; font-size: .75rem; }
@media (max-width: 520px) { .ud-myproject__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); } .ud-myproject { padding: 0 .6rem; } }
.ud-passport__actions { align-items: center; }
.ud-passport__clear { background: none; border: 0; padding: 0 .25rem; min-height: 44px; cursor: pointer; color: var(--ink-soft); }
.ud-passport__undo { display: flex; align-items: center; gap: .5rem; margin: .5rem 0; padding: .5rem .75rem; border-radius: var(--radius); background: var(--limestone); font-size: .875rem; }
.ud-passport__undo .ud-link { background: none; border: 0; min-height: 44px; padding: 0; cursor: pointer; font-weight: 700; }
.ud-passport__help { margin: 1rem 0 .5rem; }
.ud-calc__addlead { flex-basis: 100%; margin: 0; font-size: .9375rem; }
.ud-calc__review { margin-left: .5rem; }
.ud-form__status:empty { display: none; }
.ud-form__status { margin: 0 0 .75rem; font-weight: 600; color: var(--palm); }
.ud-form__submit.is-sending { opacity: .7; cursor: progress; }
.ud-compare__rev { font-weight: 700; }
.ud-size-strip__item i { width: max(6px, calc(var(--f, .1) * 96px)); height: max(6px, calc(var(--f, .1) * 96px)); }
@media (max-width: 560px) {
	.ud-size-strip__row { gap: .25rem; }
	.ud-size-strip__item { min-width: 0; flex: 1; }
	.ud-size-strip__item i { width: max(6px, calc(var(--f, .1) * 60px)); height: max(6px, calc(var(--f, .1) * 60px)); }
	.ud-size-strip__item b { font-size: .6875rem; white-space: normal; text-align: center; line-height: 1.2; }
	.ud-size__obj svg { width: 72px; height: 72px; }
}
.ud-take { margin: 1.5rem 0; }
.ud-print-head, .ud-print-note { display: none; }
@media print {
	body.ud-print-passport * { visibility: hidden !important; }
	body.ud-print-passport .ud-passport.is-printing, body.ud-print-passport .ud-passport.is-printing * { visibility: visible !important; }
	body.ud-print-passport .ud-passport.is-printing { position: absolute; left: 0; top: 0; width: 100%; box-shadow: none; border: 0; padding: 0; background: #fff; color: #000; }
	body.ud-print-passport .ud-passport.is-printing .ud-print-head, body.ud-print-passport .ud-passport.is-printing .ud-print-note { display: block; }
	body.ud-print-passport .ud-passport.is-printing .ud-passport__head, body.ud-print-passport .ud-passport.is-printing .ud-actions, body.ud-print-passport .ud-passport.is-printing .ud-passport__help, body.ud-print-passport .ud-passport.is-printing button { display: none !important; }
	body.ud-print-passport .ud-mobilebar, body.ud-print-passport header, body.ud-print-passport footer { display: none !important; }
	.ud-print-title { font-size: 20pt; font-weight: 700; margin: 0 0 4pt; }
	.ud-print-note { margin-top: 12pt; font-size: 9pt; }
}
/* Calculator: base volume and optional allowance get equal visual weight; the slider track is visible. */
.ud-calc__nums > .is-rec { background: var(--limestone); color: var(--ink-soft); border: 1px dashed var(--sand-deep); }
.ud-calc__nums > .is-rec .ud-calc__val { color: var(--ink); }
.ud-calc__nums > .is-rec .ud-calc__label { color: var(--ink-soft); }
.ud-calc__depthrow input[type="range"] { -webkit-appearance: auto; appearance: auto; height: 44px; min-height: 44px; border-radius: 0; box-shadow: none; }
@media (min-width: 640px) { .ud-calc__nums { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
	.ud-size-strip__row { display: grid; grid-template-columns: repeat(3, 1fr); align-items: end; gap: 1rem .5rem; overflow: visible; }
	.ud-size-strip__item b { font-size: .75rem; }
}

/* ---------- Monthly lot care plans (Cypress Woods) ---------- */
.ud-plans { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .ud-plans { grid-template-columns: repeat(3, 1fr); align-items: start; } }
.ud-plan { background: var(--shell); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2rem); }
.ud-plan--featured { border: 2px solid var(--palm); box-shadow: var(--shadow); }
.ud-plan__note { font: 700 .6875rem/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 .9rem; }
.ud-plan--featured .ud-plan__note { display: inline-block; color: var(--shell); background: var(--palm); padding: .45em .8em; border-radius: 999px; }
.ud-content .ud-plan h3 { font-size: 1.75rem; margin: 0 0 .5rem; }
.ud-plan__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: .35rem; margin: 0 0 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--sand); color: var(--ink-soft); font-size: .9375rem; }
.ud-plan__price strong { font: 500 2.75rem/1 var(--f-display); color: var(--ink); }
.ud-plan .ud-checklist { margin: 0; }
.ud-addons { width: 100%; border-collapse: collapse; }
.ud-addons th, .ud-addons td { text-align: left; padding: .75rem .5rem .75rem 0; border-top: 1px solid var(--sand); font-size: .9375rem; }
.ud-addons th { font-weight: 600; }
.ud-addons td { white-space: nowrap; text-align: right; color: var(--ink-soft); }

/* ---------- "In plain English" material explanations ---------- */
.ud-plain { display: grid; gap: 1.25rem; }
@media (min-width: 720px) { .ud-plain { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2.5rem; } }
.ud-plain__item { border-top: 1px solid var(--sand); padding-top: 1rem; }
.ud-content .ud-plain__item h3 { font-family: var(--f-body); font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--palm); margin: 0 0 .4rem; }
.ud-plain__item p { margin: 0; color: var(--ink-soft); }

/* ---------- Touch targets (WCAG 2.5.8): list links were 21-27px tall on phones ---------- */
@media (max-width: 899px) {
	.ud-footer__col ul a,
	.ud-footer__social a,
	.ud-problem-links a,
	.ud-jump a,
	.ud-guides a,
	.ud-crumbs a {
		display: inline-flex;
		align-items: center;
		min-height: 32px;
	}
	.ud-footer__col ul li + li,
	.ud-footer__social li + li { margin-top: .15rem; }
}

/* ---------- Problem panels: third column, proof line, reading list ---------- */
@media (min-width: 1024px) { .ud-chooser__cols { grid-template-columns: repeat(3, 1fr); } }
.ud-chooser__proof { margin: 1rem 0 0; font-size: .9375rem; color: var(--ink-soft); }
.ud-chooser__reading { margin-top: 1.25rem; }
.ud-chooser__reading h4 { font-family: var(--f-body); font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 .35rem; }

/* Footer legal, area and contact links also met only ~18-24px on phones. */
@media (max-width: 899px) {
	.ud-footer__legal a,
	.ud-footer__areas a,
	.ud-footer__contact a,
	.ud-reviews a { display: inline-flex; align-items: center; min-height: 28px; }
}

/* ---------- Answer-first opener on question guides ---------- */
.ud-content .ud-answer {
	background: var(--sage-soft); border-left: 3px solid var(--palm); border-radius: 0 var(--radius) var(--radius) 0;
	padding: 1rem 1.25rem; margin: 0 0 1.5rem; font-size: 1.0625rem; line-height: 1.6; color: var(--ink);
}
.ud-content .ud-answer strong { color: var(--palm); }
