/* ============================================================
   ExpertHome Cleaners — «Editorial Premium» design system
   Journal minimalism: huge Fraunces serif, hairline rules,
   asymmetric grids, numbered chapters, teal ink + copper accents.
   Loaded after engine.css / styles.css; overrides system pages.
   ============================================================ */

/* ---------- Self-hosted variable fonts (preloaded in main.tpl) ---------- */
@font-face { font-family: "Fraunces"; src: url("fonts/fraunces-var.woff2") format("woff2"); font-weight: 300 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Fraunces"; src: url("fonts/fraunces-var-italic.woff2") format("woff2"); font-weight: 300 700; font-style: italic; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("fonts/dmsans-var.woff2") format("woff2"); font-weight: 300 700; font-style: normal; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("fonts/dmsans-var-italic.woff2") format("woff2"); font-weight: 300 700; font-style: italic; font-display: optional; }

/* ---------- Tokens ---------- */
:root {
	/* paper & ink */
	--ed-paper: #faf9f6;
	--ed-paper-warm: #f3efe7;
	--ed-ink: #0d3b3f;
	--ed-ink-soft: #3d5a56;
	--ed-ink-mute: #4a615d;

	/* copper — dosed. #b06a3b only >=24px text; small text uses deep */
	--ed-copper: #b06a3b;
	--ed-copper-deep: #8f4f22;
	--ed-copper-cta: #a35a22;
	--ed-copper-bright: #d98e5f;

	/* dark sections */
	--ed-teal: #0d3b3f;
	--ed-teal-deep: #092b2e;
	--ed-paper-on-dark: #f6f3ec;
	--ed-mute-on-dark: #a8c0bc;

	/* rules */
	--ed-line: #e3ded4;
	--ed-line-strong: #c9c2b2;
	--ed-line-on-dark: rgba(246, 243, 236, .18);

	--ed-error: #b3261e;

	/* type */
	--ed-serif: "Fraunces", Georgia, serif;
	--ed-sans: "DM Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
	--ed-fs-display: clamp(2.9rem, 2rem + 4.6vw, 5.75rem);
	--ed-fs-h2: clamp(2.1rem, 1.5rem + 3vw, 3.75rem);
	--ed-fs-h3: clamp(1.35rem, 1.15rem + 1vw, 1.85rem);
	--ed-fs-lead: clamp(1.06rem, 1rem + .4vw, 1.25rem);
	--ed-fs-body: 1.03rem;
	--ed-fs-small: .875rem;
	--ed-fs-kicker: .75rem;
	--ed-ls-kicker: .22em;
	--ed-num-size: clamp(2.5rem, 2rem + 2.4vw, 4rem);

	/* space */
	--ed-sec: clamp(3.5rem, 2.5rem + 4.5vw, 6rem);
	--ed-sec-sm: clamp(2.5rem, 2rem + 3vw, 4rem);
	--ed-gutter: clamp(1.25rem, 4vw, 3rem);
	--ed-max: 1320px;
	--ed-max-text: 42rem;
	--ed-corner: 44px;
	--ed-header-h: 76px;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--ed-header-h) + 16px); }

body, select, input, textarea, button {
	font-family: var(--ed-sans);
	color: var(--ed-ink);
}
body {
	background: var(--ed-paper);
	font-size: var(--ed-fs-body);
	line-height: 1.6;
}

::selection { background: #ead9c9; }
:focus-visible { outline: 2px solid var(--ed-copper-deep); outline-offset: 3px; border-radius: 2px; }

a { color: var(--ed-ink); text-decoration-color: var(--ed-copper); text-underline-offset: 3px; }
a:hover { color: var(--ed-copper-deep); }
.meta a { color: var(--ed-copper-deep); }
.story_date a, .grey a { color: var(--ed-copper-deep); }

h1, h2, h3, h4, h5, .h2, .h4 {
	font-family: var(--ed-serif);
	font-weight: 550;
	letter-spacing: -0.01em;
	color: var(--ed-ink);
	font-variation-settings: "opsz" 60;
}
h1, h2, h3 { text-wrap: balance; }

.grey { color: var(--ed-ink-mute); }

hr { border: 0; border-top: 1px solid var(--ed-line); }

.ed-it { font-style: italic; font-weight: 340; }

/* ---------- Primitives ---------- */
.ed-container { max-width: var(--ed-max); margin: 0 auto; padding: 0 var(--ed-gutter); }
.ed-section { padding: var(--ed-sec) 0; }
.ed-section--warm { background: var(--ed-paper-warm); }

.ed-kicker {
	display: block;
	font-size: var(--ed-fs-kicker);
	font-weight: 600;
	letter-spacing: var(--ed-ls-kicker);
	text-transform: uppercase;
	color: var(--ed-copper-deep);
}

/* Section masthead: rule on top, kicker + huge h2 + aside */
.ed-masthead {
	border-top: 1px solid var(--ed-line-strong);
	padding-top: 22px;
	margin-bottom: clamp(1.8rem, 1.5rem + 2vw, 3rem);
	display: grid;
	grid-template-columns: 1fr minmax(0, 36%);
	gap: 18px var(--ed-gutter);
	align-items: end;
}
.ed-masthead .ed-kicker { grid-column: 1 / -1; }
.ed-masthead h2 {
	margin: 0;
	font-size: var(--ed-fs-h2);
	line-height: 1.05;
	font-variation-settings: "opsz" 144;
	font-weight: 480;
}
.ed-masthead__aside {
	margin: 0;
	font-size: var(--ed-fs-small);
	line-height: 1.6;
	color: var(--ed-ink-soft);
	max-width: 34ch;
	justify-self: end;
	padding-bottom: .35em;
}

/* Buttons: rectangular, no radius */
.ed-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 28px;
	background: var(--ed-copper-cta);
	color: #fff !important;
	font-size: .95rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	text-decoration: none !important;
	border: 1px solid var(--ed-copper-cta);
	border-radius: 2px;
	cursor: pointer;
	transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.ed-btn:hover { background: var(--ed-ink); border-color: var(--ed-ink); color: #fff !important; }
.ed-btn--paper { background: var(--ed-paper); border-color: var(--ed-paper); color: var(--ed-ink) !important; }
.ed-btn--paper:hover { background: var(--ed-copper-bright); border-color: var(--ed-copper-bright); color: var(--ed-teal-deep) !important; }

/* Folio strip: running head between hairlines */
.ed-folio {
	border-top: 1px solid var(--ed-line-strong);
	border-bottom: 1px solid var(--ed-line-strong);
	padding: 14px 0;
}
.ed-folio__in {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px 22px;
	font-size: var(--ed-fs-kicker);
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--ed-ink-soft);
	white-space: nowrap;
	overflow-x: auto;
	scrollbar-width: none;
}
.ed-folio__in::-webkit-scrollbar { display: none; }
.ed-folio__in .sep { color: var(--ed-copper); }
.ed-folio__in .ed-star { color: var(--ed-copper-deep); }

/* em-dash checklist */
.ed-checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ed-checks li { display: flex; gap: 12px; align-items: baseline; font-size: .98rem; color: var(--ed-ink-soft); }
.ed-checks .tick { color: var(--ed-copper-deep); font-weight: 700; flex: none; }

/* Skip link */
.ed-skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 2000;
	padding: 12px 18px; background: var(--ed-ink); color: var(--ed-paper);
	font-weight: 600; text-decoration: none;
}
.ed-skip-link:focus { left: 0; color: var(--ed-paper); }

/* ---------- Header ---------- */
.ed-header {
	position: sticky; top: 0; z-index: 100;
	overflow-x: clip;
	background: var(--ed-paper);
	border-bottom: 1px solid var(--ed-line-strong);
}
.ed-header__bar {
	display: grid; grid-template-columns: 1fr auto 1fr auto; grid-template-rows: 1fr; align-items: center;
	gap: clamp(14px, 2vw, 30px);
	height: var(--ed-header-h);
}
.ed-wordmark {
	display: flex; flex-direction: column; gap: 1px;
	text-decoration: none !important; color: var(--ed-ink);
	line-height: 1.05;
}
.ed-wordmark__name {
	font-family: var(--ed-serif);
	font-size: 1.75rem;
	font-weight: 560;
	font-variation-settings: "opsz" 144;
	letter-spacing: -0.01em;
	white-space: nowrap;
}
.ed-wordmark__name em { font-style: italic; font-weight: 380; }
.ed-nav { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 26px); margin-left: auto; }
.ed-nav a {
	font-size: .74rem; font-weight: 600;
	letter-spacing: .16em; text-transform: uppercase;
	color: var(--ed-ink-soft); text-decoration: none;
	padding: 6px 0; border-bottom: 1px solid transparent;
	transition: color .15s ease, border-color .15s ease;
	white-space: nowrap;
}
.ed-nav a:hover { color: var(--ed-ink); border-bottom-color: var(--ed-copper); }
.ed-header__phone {
	display: inline-flex; align-items: center; gap: 8px;
	min-height: 24px;
	padding-left: 20px; border-left: 1px solid var(--ed-line);
	font-size: .88rem; font-weight: 700; font-variant-numeric: tabular-nums;
	color: var(--ed-ink); text-decoration: none; white-space: nowrap;
}
.ed-header__phone:hover { color: var(--ed-copper-deep); }
.ed-header__phone-label {
	font-size: .62rem; font-weight: 600;
	letter-spacing: .18em; text-transform: uppercase;
	color: var(--ed-ink-mute);
}
.ed-header__cta { display: flex; align-items: center; gap: 14px; }
.ed-header__cta .ed-btn { padding: 12px 20px; font-size: .78rem; }

/* Burger / search buttons */
.ed-burger {
	display: none;
	background: none; border: 1px solid transparent; border-radius: 2px;
	width: 40px; height: 40px; align-items: center; justify-content: center;
	cursor: pointer; color: var(--ed-ink);
	opacity: .85;
}
.ed-burger:hover { opacity: 1; border-color: var(--ed-line-strong); }

/* Mobile curtain menu */
.ed-mobile-menu {
	display: none;
	position: fixed; inset: var(--ed-header-h) 0 0 0; z-index: 90;
	background: var(--ed-paper);
	padding: 28px var(--ed-gutter) 40px;
	overflow-y: auto;
}
.ed-mobile-menu.open { display: block; }
.ed-mobile-menu__links { display: flex; flex-direction: column; }
.ed-mobile-menu__links a {
	font-family: var(--ed-serif);
	font-size: clamp(1.7rem, 6vw, 2.4rem);
	font-weight: 480;
	font-variation-settings: "opsz" 144;
	color: var(--ed-ink); text-decoration: none;
	padding: 16px 0; border-bottom: 1px solid var(--ed-line);
}
.ed-mobile-menu__links a:hover { font-style: italic; color: var(--ed-copper-deep); }
.ed-mobile-menu__phones { display: grid; gap: 0; margin-top: 8px; }
.ed-mobile-menu__phones a {
	display: flex; justify-content: space-between; align-items: baseline;
	padding: 14px 0; border-bottom: 1px solid var(--ed-line);
	text-decoration: none;
}
.ed-mobile-menu__phones .name { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ed-ink-mute); font-weight: 600; }
.ed-mobile-menu__phones .phone { font-weight: 700; font-variant-numeric: tabular-nums; }
.ed-mobile-menu input, .ed-mobile-menu .ed-btn { border-radius: 2px; }

/* Login dropdown (DLE {login} renders into #login_pane / .dropdown-form) */

/* ---------- Hero ---------- */
.ed-hero { position: relative; padding: clamp(2rem, 1.5rem + 2.5vw, 3.5rem) 0 0; }
.ed-hero__grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(1.5rem, 3vw, 3rem);
	align-items: start;
}
.ed-hero__copy { grid-column: 1 / 8; position: relative; }
.ed-hero__folio {
	display: flex; flex-wrap: wrap; gap: 6px 14px;
	margin: 0 0 26px;
	padding: 10px 0;
	border-top: 1px solid var(--ed-line-strong);
	border-bottom: 1px solid var(--ed-line-strong);
	font-size: var(--ed-fs-kicker); font-weight: 600;
	letter-spacing: .18em; text-transform: uppercase;
	color: var(--ed-ink-soft);
}
.ed-hero__folio .sep { color: var(--ed-copper); }
.ed-hero__title {
	position: relative; z-index: 1;
	margin: 0 0 24px;
	font-size: var(--ed-fs-display);
	line-height: 1.02;
	font-weight: 390;
	font-variation-settings: "opsz" 144;
	letter-spacing: -0.02em;
}
.ed-hero__title em { font-style: italic; font-weight: 330; color: var(--ed-copper); }
.ed-hero__glyph::before { content: "55"; }
.ed-hero__glyph {
	position: absolute; z-index: 0;
	top: -30px; right: -10px;
	font-family: var(--ed-serif); font-style: italic; font-weight: 320;
	font-size: clamp(9rem, 6rem + 12vw, 15rem);
	line-height: 1;
	color: var(--ed-copper);
	opacity: .1;
	pointer-events: none;
	user-select: none;
}
.ed-hero__lead {
	margin: 0 0 26px;
	max-width: var(--ed-max-text);
	font-size: var(--ed-fs-lead); line-height: 1.65;
	color: var(--ed-ink-soft);
	text-wrap: pretty;
}
.ed-hero__lead strong { color: var(--ed-ink); font-weight: 700; }
.ed-hero__copy .ed-checks { margin-bottom: 30px; }

/* --- Estimate form: journal inset box --- */
.ed-quote {
	grid-column: 8 / 13;
	position: relative;
	border: 1px solid var(--ed-ink);
	background: var(--ed-paper);
	padding: clamp(22px, 2.6vw, 34px);
	margin-top: 46px;
}
.ed-quote__flag {
	position: absolute; top: -11px; left: clamp(22px, 2.6vw, 34px);
	background: var(--ed-paper);
	padding: 0 12px;
	font-size: .68rem; font-weight: 700;
	letter-spacing: .22em; text-transform: uppercase;
	color: var(--ed-copper-deep);
}
.ed-quote__head h2 {
	margin: 0 0 6px;
	font-size: clamp(1.5rem, 1.3rem + 1vw, 1.9rem);
	font-weight: 500;
	font-variation-settings: "opsz" 144;
}
.ed-quote__sub { margin: 0 0 18px; font-size: .9rem; color: var(--ed-ink-soft); text-wrap: pretty; }
.ed-quote__progress { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.ed-quote__step-label {
	font-family: var(--ed-serif); font-style: italic;
	font-size: .92rem; color: var(--ed-ink-soft);
	white-space: nowrap; font-variant-numeric: tabular-nums;
}
.ed-quote__bars { display: flex; gap: 6px; flex: 1; }
.ed-quote__bars span { height: 1px; flex: 1; background: var(--ed-line-strong); transition: background-color .2s ease, height .2s ease; }
.ed-quote__bars span.active { background: var(--ed-copper-deep); height: 3px; }

.ed-quote fieldset { border: 0; margin: 0; padding: 0; }
.ed-quote .legend, .ed-quote legend {
	font-size: .72rem; font-weight: 700;
	letter-spacing: .18em; text-transform: uppercase;
	color: var(--ed-ink-soft);
	padding: 0; margin-bottom: 12px; display: block;
}
.ed-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ed-chips--4 { grid-template-columns: repeat(4, 1fr); }
.ed-chips--5 { grid-template-columns: repeat(5, 1fr); }
.ed-chips[hidden] { display: none; }
.ed-chip {
	appearance: none;
	background: transparent;
	border: 1px solid var(--ed-line-strong);
	border-radius: 2px;
	padding: 11px 12px;
	font-size: .86rem; font-weight: 500;
	color: var(--ed-ink);
	text-align: left;
	cursor: pointer;
	transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.ed-chip--center { text-align: center; }
.ed-chip:hover { border-color: var(--ed-ink); }
.ed-chip[aria-pressed="true"] { background: var(--ed-ink); border-color: var(--ed-ink); color: var(--ed-paper); }
.ed-quote input[type="text"], .ed-quote input[type="tel"], .ed-quote input[type="email"], .ed-quote input[type="number"] {
	width: 100%;
	border: 0; border-bottom: 1px solid var(--ed-line-strong);
	border-radius: 0;
	background: transparent;
	padding: 12px 2px;
	font-size: .95rem;
	color: var(--ed-ink);
	transition: border-color .15s ease;
}
.ed-quote input:focus { border-bottom-color: var(--ed-copper-deep); }
.ed-quote input:focus-visible { outline: 2px solid var(--ed-copper-deep); outline-offset: 2px; }
.ed-quote input::placeholder { color: var(--ed-ink-mute); }
.ed-quote__qty { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.ed-quote__qty label { font-size: .85rem; color: var(--ed-ink); }
.ed-quote__qty input[type="number"] { width: 70px; text-align: center; }

.ed-quote__slider-label { display: block; font-size: .85rem; color: var(--ed-ink); }
.ed-quote__optional { color: var(--ed-ink-mute); font-weight: 400; }
.ed-quote input[type="range"] { width: 100%; margin-top: 10px; accent-color: var(--ed-copper-deep); }
.ed-quote__slider-scale { display: flex; justify-content: space-between; font-size: .72rem; color: var(--ed-ink-mute); margin-top: 4px; }
.ed-quote__slider-scale [data-home-size-value] { font-style: italic; color: var(--ed-ink-soft); }
.ed-quote__extras { display: grid; gap: 8px; margin-top: 10px; }
.ed-quote__extra { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--ed-ink); cursor: pointer; }
.ed-quote__extra input[type="checkbox"] { accent-color: var(--ed-copper-deep); width: 16px; height: 16px; flex-shrink: 0; }
.ed-quote__extra span { flex: 1; }
.ed-quote__continue { width: 100%; margin-top: 18px; }
.ed-quote__row { display: flex; gap: 14px; align-items: center; margin-top: 18px; }
.ed-quote__row .ed-quote__continue { margin-top: 0; flex: 1; }
.ed-quote__back {
	appearance: none; background: none; border: 0;
	font-size: .82rem; font-weight: 600; letter-spacing: .06em;
	color: var(--ed-ink-mute); cursor: pointer;
	padding: 10px 4px;
	border-bottom: 1px solid transparent;
}
.ed-quote__back:hover { color: var(--ed-ink); border-bottom-color: var(--ed-line-strong); }
.ed-quote__fields { display: grid; gap: 4px; }
.ed-quote__consent { margin: 14px 0 0; font-size: .74rem; line-height: 1.55; color: var(--ed-ink-mute); }
.ed-quote__success { text-align: left; padding: 8px 0; }
.ed-quote__success .tick {
	font-size: 1.4rem; color: var(--ed-copper-deep);
	border: 1px solid var(--ed-copper-deep); border-radius: 50%;
	width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
	margin-bottom: 14px;
}
.ed-quote__success h3 { margin: 0 0 8px; font-size: 1.4rem; font-weight: 500; }
.ed-quote__success p { margin: 0 0 6px; color: var(--ed-ink-soft); font-size: .94rem; }
.ed-quote__error { margin: 14px 0 0; font-size: .85rem; font-weight: 600; color: var(--ed-error); }
.ed-quote__foot {
	display: flex; flex-wrap: wrap; gap: 6px 16px;
	margin-top: 20px; padding-top: 14px;
	border-top: 1px solid var(--ed-line);
	font-size: .72rem; font-weight: 600;
	letter-spacing: .1em; text-transform: uppercase;
	color: var(--ed-ink-mute);
}
.ed-quote__foot .ed-star { color: var(--ed-copper-deep); }

/* --- Carousel (full width under hero grid) --- */
.ed-carousel { grid-column: 1 / -1; margin-top: clamp(2rem, 4vw, 3.5rem); }
.ed-carousel__bar {
	display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
	border-top: 1px solid var(--ed-line-strong);
	padding: 12px 0 16px;
}
.ed-carousel__caption {
	margin: 0;
	font-size: var(--ed-fs-kicker); font-weight: 600;
	letter-spacing: .18em; text-transform: uppercase;
	color: var(--ed-ink-mute);
}
.ed-carousel__nav { display: flex; align-items: center; gap: 8px; }
.ed-carousel__btn {
	appearance: none; background: none; cursor: pointer;
	width: 40px; height: 40px;
	border: 1px solid var(--ed-line-strong); border-radius: 2px;
	font-size: 1.2rem; line-height: 1; color: var(--ed-ink);
	display: inline-flex; align-items: center; justify-content: center;
	transition: border-color .15s ease, background-color .15s ease;
}
.ed-carousel__btn:hover { border-color: var(--ed-ink); }
.ed-carousel__dots { display: flex; gap: 6px; margin-right: 10px; }
.ed-carousel__dots span { width: 18px; height: 1px; background: var(--ed-line-strong); transition: background-color .2s ease, height .2s ease; }
.ed-carousel__dots span.active { background: var(--ed-copper-deep); height: 3px; }
.ed-carousel__track {
	display: flex; gap: clamp(12px, 1.6vw, 22px);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.ed-carousel__track::-webkit-scrollbar { display: none; }
.ed-carousel__slide { flex: 0 0 min(680px, 86%); scroll-snap-align: start; }
.ed-carousel__slide img { width: 100%; height: auto; display: block; }

/* ---------- Services: journal table of contents ---------- */
.ed-toc { border-bottom: 1px solid var(--ed-line); }
.ed-toc__row {
	position: relative;
	display: grid;
	grid-template-columns: minmax(70px, 110px) minmax(0, 1.1fr) minmax(0, 1.4fr) auto auto;
	gap: 10px clamp(14px, 2.4vw, 40px);
	align-items: baseline;
	padding: clamp(18px, 2.4vw, 30px) 0;
	border-top: 1px solid var(--ed-line);
	transition: background-color .18s ease;
}
.ed-toc__row:hover { background: var(--ed-paper-warm); }
.ed-toc__num {
	font-family: var(--ed-serif); font-style: italic; font-weight: 340;
	font-size: var(--ed-num-size);
	line-height: .9;
	color: var(--ed-copper);
	align-self: center;
}
.ed-toc__title { margin: 0; font-size: var(--ed-fs-h3); font-weight: 520; font-variation-settings: "opsz" 144; }
.ed-toc__title a { color: var(--ed-ink); text-decoration: none; }
.ed-toc__row:hover .ed-toc__title a { font-style: italic; color: var(--ed-copper-deep); }
.ed-toc__tag {
	display: block;
	margin-top: 6px;
	font-family: var(--ed-sans);
	font-size: .66rem; font-weight: 700;
	letter-spacing: .2em; text-transform: uppercase;
	color: var(--ed-copper-deep);
}
.ed-toc__desc { margin: 0; font-size: .94rem; line-height: 1.55; color: var(--ed-ink-soft); max-width: 44ch; }
.ed-toc__price { font-family: var(--ed-serif); font-size: 1.5rem; font-weight: 480; color: var(--ed-ink); white-space: nowrap; }
.ed-toc__price span { font-family: var(--ed-sans); font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ed-ink-mute); margin-left: 4px; }
.ed-toc__arrow {
	font-size: .78rem; font-weight: 700;
	letter-spacing: .14em; text-transform: uppercase;
	color: var(--ed-copper-deep); text-decoration: none;
	white-space: nowrap;
	transition: transform .18s ease;
}
.ed-toc__arrow:hover { color: var(--ed-ink); }
.ed-toc__row:hover .ed-toc__arrow { transform: translateX(6px); }

/* ---------- How it works: vertical timeline ---------- */
.ed-steps {
	list-style: none; margin: 0; padding: 0;
	border-left: 1px solid var(--ed-line-strong);
	display: grid;
	gap: clamp(2rem, 4vw, 3.4rem);
	max-width: 800px;
}
.ed-steps li { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: clamp(14px, 3vw, 34px); }
.ed-steps .num {
	font-family: var(--ed-serif); font-style: italic; font-weight: 340;
	font-size: var(--ed-num-size); line-height: .8;
	color: var(--ed-copper);
	background: transparent;
	justify-self: start;
	margin-left: -1px;
	padding: 4px 18px 4px 22px;
	border-left: 3px solid var(--ed-copper);
}
.ed-section--warm .ed-steps .num { background: var(--ed-paper-warm); }
.ed-steps h3 { margin: 0 0 8px; font-size: var(--ed-fs-h3); font-weight: 520; font-variation-settings: "opsz" 144; }
.ed-steps p { margin: 0; color: var(--ed-ink-soft); line-height: 1.65; max-width: var(--ed-max-text); }

/* ---------- Family: asymmetric collage + pull quote ---------- */
.ed-family { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: center; }
.ed-family__copy { grid-column: 1 / 6; }
.ed-family__copy h2 { margin: 10px 0 18px; font-size: var(--ed-fs-h2); line-height: 1.05; font-weight: 480; font-variation-settings: "opsz" 144; }
.ed-family__intro { margin: 0 0 22px; color: var(--ed-ink-soft); line-height: 1.65; max-width: 48ch; }
.ed-family__quote {
	position: relative;
	margin: 0 0 22px; padding: 10px 0 10px 30px;
}
.ed-family__quote::before {
	content: "\201C";
	position: absolute; left: -14px; top: -34px;
	font-family: var(--ed-serif); font-style: italic;
	font-size: 7rem; line-height: 1;
	color: var(--ed-copper); opacity: .35;
	pointer-events: none;
}
.ed-family__quote p {
	margin: 0;
	font-family: var(--ed-serif); font-style: italic; font-weight: 380;
	font-size: clamp(1.35rem, 1.1rem + 1.2vw, 1.8rem);
	line-height: 1.3;
	color: var(--ed-ink);
}
.ed-family__sign {
	margin: 18px 0 0;
	font-size: .74rem; font-weight: 600;
	letter-spacing: .18em; text-transform: uppercase;
	color: var(--ed-copper-deep);
}
.ed-family__photos { grid-column: 6 / 13; position: relative; display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(12px, 1.6vw, 22px); }
.ed-family__photos::before {
	content: "";
	position: absolute; left: -6%; right: -6%; top: 52%;
	border-top: 1px solid var(--ed-copper);
	opacity: .5;
}
.ed-family__photos .ph { position: relative; }
.ed-family__photos .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ed-family__photos .ph--main { grid-row: span 2; }
.ed-family__photos .ph--shift { margin-top: 34%; }

/* ---------- Compare: financial-journal table ---------- */
.ed-compare-wrap { overflow-x: auto; }
.ed-compare { width: 100%; border-collapse: collapse; min-width: 640px; }
.ed-compare thead th {
	font-family: var(--ed-sans);
	font-size: .72rem; font-weight: 700;
	letter-spacing: .18em; text-transform: uppercase;
	color: var(--ed-ink);
	text-align: left;
	padding: 0 18px 14px;
	border-bottom: 2px solid var(--ed-ink);
	vertical-align: bottom;
}
.ed-compare thead th .tag {
	display: block; margin-top: 4px;
	font-size: .62rem; letter-spacing: .2em;
	color: var(--ed-copper-deep);
}
.ed-compare tbody th, .ed-compare tbody td {
	padding: 15px 18px;
	border-bottom: 1px solid var(--ed-line);
	font-size: .94rem;
	text-align: left;
	vertical-align: top;
}
.ed-compare tbody th {
	font-family: var(--ed-serif); font-weight: 520;
	font-size: 1rem; color: var(--ed-ink);
	white-space: nowrap;
}
.ed-compare tbody td { color: var(--ed-ink-soft); }
.ed-compare .deep, .ed-compare thead th.plan--deep { border-left: 1px solid var(--ed-copper); }
.ed-compare .tick { color: var(--ed-copper-deep); font-weight: 700; }
.ed-compare__note {
	margin: 16px 0 0;
	font-family: var(--ed-serif); font-style: italic;
	font-size: .92rem; color: var(--ed-ink-mute);
}

/* ---------- Reviews: zigzag pull quotes ---------- */
.ed-quotes { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(2.5rem, 5vw, 4.5rem) 0; }
.ed-quote-pull { position: relative; margin: 0; grid-column: 1 / 9; padding-left: clamp(2rem, 4vw, 3.5rem); }

.ed-quote-pull::before {
	content: "\201C";
	position: absolute; left: -8px; top: -46px;
	font-family: var(--ed-serif); font-style: italic;
	font-size: clamp(6rem, 10vw, 9rem); line-height: 1;
	color: var(--ed-copper); opacity: .85;
	pointer-events: none;
}
.ed-quote-pull blockquote {
	margin: 0 0 18px;
	font-family: var(--ed-serif); font-weight: 400;
	font-size: clamp(1.15rem, 1rem + .8vw, 1.5rem);
	line-height: 1.45;
	color: var(--ed-ink);
	text-wrap: pretty;
}

.ed-quote-pull figcaption {
	display: flex; align-items: baseline; gap: 14px;
	border-top: 1px solid var(--ed-line-strong);
	padding-top: 12px;
	font-size: .74rem; font-weight: 600;
	letter-spacing: .16em; text-transform: uppercase;
	color: var(--ed-ink-soft);
}
.ed-quote-pull .stars { color: var(--ed-copper-deep); letter-spacing: .1em; }
.ed-quotes-note {
	grid-column: 1 / -1;
	margin: 0;
	font-family: var(--ed-serif); font-style: italic;
	font-size: .95rem; color: var(--ed-ink-mute);
	text-align: center;
}

/* ---------- Before / After: framed photograph ---------- */
.ed-ba { max-width: 940px; margin: 0 auto; }
.ed-ba__head {
	display: flex; justify-content: space-between; align-items: baseline;
	border-top: 1px solid var(--ed-line-strong);
	padding: 10px 2px 12px;
	font-size: var(--ed-fs-kicker); font-weight: 700;
	letter-spacing: .2em; text-transform: uppercase;
	color: var(--ed-ink-soft);
}
.ed-ba__head .after { color: var(--ed-copper-deep); }
.ed-ba__frame {
	position: relative;
	border: 1px solid var(--ed-ink);
	padding: 10px;
	background: var(--ed-paper);
	user-select: none;
	touch-action: pan-y;
}
.ed-ba__frame img { display: block; width: 100%; height: auto; }
.ed-ba__frame img.ed-ba__after {
	position: absolute; top: 10px; left: 10px;
	width: calc(100% - 20px); height: calc(100% - 20px);
	object-fit: cover;
	clip-path: inset(0 0 0 50%);
}
.ed-ba__handle {
	position: absolute; top: 10px; bottom: 10px; left: 50%;
	width: 1px; background: var(--ed-paper);
	cursor: ew-resize;
	box-shadow: 0 0 0 1px rgba(13, 59, 63, .35);
}
.ed-ba__handle::after {
	content: "\25C2\2002\25B8";
	position: absolute; top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	background: var(--ed-paper);
	border: 1px solid var(--ed-ink);
	color: var(--ed-ink);
	font-size: .8rem; line-height: 1;
	padding: 10px 12px;
	white-space: nowrap;
}
.ed-ba__caption {
	margin: 14px 0 0;
	font-family: var(--ed-serif); font-style: italic;
	font-size: .92rem; color: var(--ed-ink-mute);
	text-align: center;
}

/* ---------- Areas: two ruled columns ---------- */
.ed-areas { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); }
.ed-areas__col + .ed-areas__col { border-left: 1px solid var(--ed-line-strong); padding-left: clamp(2rem, 5vw, 4.5rem); }
.ed-areas__head {
	display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
	border-bottom: 1px solid var(--ed-ink);
	padding-bottom: 12px; margin-bottom: 6px;
}
.ed-areas__head h3 { margin: 0; font-size: var(--ed-fs-h3); font-weight: 520; font-variation-settings: "opsz" 144; }
.ed-areas__head a { font-weight: 700; font-variant-numeric: tabular-nums; text-decoration: none; color: var(--ed-copper-deep); white-space: nowrap; }
.ed-areas__head a:hover { color: var(--ed-ink); }
.ed-areas__sub { margin: 0 0 18px; font-size: .85rem; color: var(--ed-ink-mute); }

.ed-areas__list {
	list-style: none; margin: 0; padding: 0;
	columns: 2; column-gap: 34px;
	column-rule: 1px solid var(--ed-line);
}
.ed-areas__list li {
	break-inside: avoid;
	padding: 7px 0;
	border-bottom: 1px solid var(--ed-line);
	font-size: .92rem;
	color: var(--ed-ink-mute);
}
.ed-areas__list a { color: var(--ed-ink); text-decoration: none; border-bottom: 1px solid var(--ed-copper); padding-bottom: 1px; }
.ed-areas__list a:hover { color: var(--ed-copper-deep); }
.ed-areas__list li.wa::after { content: " \2726"; color: var(--ed-copper-deep); font-size: .7em; }
.ed-areas__note {
	margin: 16px 0 0; padding-top: 10px;
	position: relative;
	font-family: var(--ed-serif); font-style: italic;
	font-size: .85rem; color: var(--ed-ink-mute);
}
.ed-areas__note::before { content: ""; position: absolute; top: 0; left: 0; width: 44px; border-top: 1px solid var(--ed-line-strong); }
.ed-areas__note .dot { color: var(--ed-copper-deep); font-style: normal; }

/* ---------- FAQ: numbered ruled details ---------- */
.ed-faq { max-width: 860px; margin: 0 auto; border-bottom: 1px solid var(--ed-line); }
.ed-faq details { border-top: 1px solid var(--ed-line); }
.ed-faq summary {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) auto;
	gap: 16px;
	align-items: baseline;
	padding: 20px 4px;
	cursor: pointer;
	list-style: none;
}
.ed-faq summary::-webkit-details-marker { display: none; }
.ed-faq summary .qnum {
	font-family: var(--ed-serif); font-style: italic;
	font-size: 1rem; color: var(--ed-copper-deep);
	font-variant-numeric: tabular-nums;
}
.ed-faq summary .qtext {
	font-family: var(--ed-serif); font-weight: 500;
	font-size: clamp(1.05rem, 1rem + .5vw, 1.3rem);
	color: var(--ed-ink);
}
.ed-faq summary:hover .qtext { font-style: italic; color: var(--ed-copper-deep); }
.ed-faq summary .plus {
	font-size: 1.3rem; font-weight: 300; line-height: 1;
	color: var(--ed-ink-mute);
	transition: transform .2s ease;
}
.ed-faq details[open] summary .plus { transform: rotate(45deg); color: var(--ed-copper-deep); }
.ed-faq details p {
	margin: 0; padding: 0 4px 22px 72px;
	color: var(--ed-ink-soft); line-height: 1.65;
	max-width: 62ch;
}
.ed-faq__more {
	margin: 26px 0 0; text-align: center;
	font-family: var(--ed-serif); font-style: italic;
	font-size: .95rem; color: var(--ed-ink-mute);
}
.ed-faq__more a { color: var(--ed-copper-deep); font-weight: 600; }

/* ---------- Final CTA: dark plate ---------- */
.ed-cta-section {
	background: var(--ed-teal);
	border-top: 1px solid var(--ed-copper);
	padding: var(--ed-sec) 0;
}
.ed-cta { text-align: center; }
.ed-cta h2 {
	margin: 0 auto 18px;
	max-width: 22ch;
	font-size: clamp(2.4rem, 1.8rem + 3.6vw, 4.6rem);
	line-height: 1.04;
	font-weight: 420;
	font-variation-settings: "opsz" 144;
	color: var(--ed-paper-on-dark);
}
.ed-cta h2 em { font-style: italic; font-weight: 340; color: var(--ed-copper-bright); }
.ed-cta > p { margin: 0 0 34px; font-size: var(--ed-fs-lead); color: var(--ed-mute-on-dark); }
.ed-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 38px; }
.ed-cta__facts {
	display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px;
	border-top: 1px solid var(--ed-line-on-dark);
	padding-top: 18px;
	max-width: 760px; margin: 0 auto;
	font-size: var(--ed-fs-kicker); font-weight: 600;
	letter-spacing: .16em; text-transform: uppercase;
	color: var(--ed-mute-on-dark);
}
.ed-cta__facts .sep { color: var(--ed-copper-bright); }

/* ---------- Journal (homepage blog feed over {content}) ---------- */
.ed-journal { border-bottom: 1px solid var(--ed-line); }
.ed-journal .box.story {
	background: none; border: 0; border-radius: 0; box-shadow: none;
	margin: 0; padding: clamp(20px, 2.6vw, 30px) 0;
	border-top: 1px solid var(--ed-line);
}
.ed-journal .box.story .box_in { padding: 0; }
.ed-journal .story .title { margin: 0 0 8px; font-size: var(--ed-fs-h3); font-weight: 520; font-variation-settings: "opsz" 144; }
.ed-journal .story .title a { color: var(--ed-ink); text-decoration: none; }
.ed-journal .story .title a:hover { font-style: italic; color: var(--ed-copper-deep); }
.ed-journal .story .text { color: var(--ed-ink-soft); max-width: 68ch; }

.ed-journal .story .meta {
	background: none; border: 0; padding: 10px 0 0; margin: 0;
	font-size: .78rem; letter-spacing: .06em; color: var(--ed-ink-mute);
}

/* ---------- Sticky mobile CTA ---------- */
.ed-sticky {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
	display: none;
	grid-template-columns: 1fr;
	background: var(--ed-paper);
	border-top: 1px solid var(--ed-ink);
	padding-bottom: env(safe-area-inset-bottom);
}
.ed-sticky a {
	padding: 16px 0; text-align: center;
	font-size: .8rem; font-weight: 700;
	letter-spacing: .14em; text-transform: uppercase;
	text-decoration: none !important;
}
.ed-sticky__quote { background: var(--ed-copper-cta); color: #fff !important; }

/* ============================================================
   Programmatic pages (service / city / district / article)
   ============================================================ */
.ed-cols { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(1.5rem, 3vw, 3rem); padding-top: 26px; padding-bottom: var(--ed-sec-sm); }
.ed-main { min-width: 0; }

/* Page article shell: strip the DLE box */
.ed-main .box, .ed-cols .box {
	background: none; border: 0; border-radius: 0; box-shadow: none;
	margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.ed-main .box_in, .ed-cols .box_in { padding: 0; }
.ed-main .box .heading, .ed-cols .box .heading {
	background: none; border: 0; padding: 0 0 14px; margin: 0 0 18px;
	border-bottom: 1px solid var(--ed-ink);
	font-size: var(--ed-fs-h3); font-weight: 520;
	font-variation-settings: "opsz" 144;
}
.ed-main .title.h2, .ed-cols .title.h2 {
	font-size: clamp(2rem, 1.6rem + 2.4vw, 3.4rem);
	line-height: 1.06; font-weight: 460;
	font-variation-settings: "opsz" 144;
	margin: 0 0 14px;
}
.ed-page__sub {
	margin: 0 0 20px;
	font-family: var(--ed-serif); font-style: italic; font-weight: 380;
	font-size: var(--ed-fs-lead); line-height: 1.5;
	color: var(--ed-ink-soft);
}
.ed-page__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; margin: 0 0 22px; }
.ed-page__price {
	margin: 0 0 22px;
	padding: 14px 0;
	border-top: 1px solid var(--ed-line-strong);
	border-bottom: 1px solid var(--ed-line-strong);
	background: none;
	font-size: .95rem; color: var(--ed-ink-soft);
	border-radius: 0;
}
.ed-page__price strong { font-family: var(--ed-serif); font-size: 1.35rem; font-weight: 520; color: var(--ed-copper-deep); margin-right: 6px; }
.ed-main .text, .ed-cols .story .text { color: var(--ed-ink-soft); line-height: 1.7; max-width: 70ch; }
.ed-main .text h2, .ed-main .text h3 { margin-top: 1.6em; }
.ed-main .text ul { padding-left: 0; list-style: none; }
.ed-main .text ul li { padding: 8px 0 8px 26px; position: relative; border-bottom: 1px solid var(--ed-line); }
.ed-main .text ul li::before { content: "\2014"; position: absolute; left: 0; color: var(--ed-copper-deep); }
.ed-main .story .meta { background: none; border: 0; border-top: 1px solid var(--ed-line); padding: 12px 0 0; margin-top: 22px; font-size: .82rem; color: var(--ed-ink-mute); }

/* Row cards for {custom} lists */
.ed-rowlist { border-bottom: 1px solid var(--ed-line); }
.ed-row-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 4px clamp(14px, 2vw, 30px);
	align-items: baseline;
	padding: 18px 0;
	border-top: 1px solid var(--ed-line);
}
.ed-row-card h3 { margin: 0; font-size: 1.15rem; font-weight: 520; font-variation-settings: "opsz" 144; }
.ed-row-card h3 a { color: var(--ed-ink); text-decoration: none; }
.ed-row-card h3 a:hover { font-style: italic; color: var(--ed-copper-deep); }
.ed-row-card .ed-row-card__text { grid-column: 1; font-size: .9rem; color: var(--ed-ink-soft); max-width: 56ch; }
.ed-row-card .ed-row-card__text p { margin: 0; }
.ed-row-card__side { grid-column: 2; grid-row: 1 / 3; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.ed-row-card__price { font-family: var(--ed-serif); font-size: 1.2rem; color: var(--ed-ink); white-space: nowrap; }
.ed-row-card__price span { font-family: var(--ed-sans); font-size: .66rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ed-ink-mute); margin-left: 4px; }
.ed-row-card__link { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ed-copper-deep); text-decoration: none; white-space: nowrap; }
.ed-row-card__link:hover { color: var(--ed-ink); }

/* City link list on pages */

/* FAQ page-variant inherits .ed-faq; tighten */
.ed-faq--page { max-width: none; }
.ed-faq--page summary { grid-template-columns: minmax(0, 1fr) auto; padding: 16px 2px; }
.ed-faq--page summary .qtext { font-size: 1.05rem; }
.ed-faq--page details p { padding-left: 2px; }

/* ---------- Sidebar: journal insets ---------- */
.ed-side { display: flex; flex-direction: column; gap: clamp(1.6rem, 2.6vw, 2.4rem); }
.ed-side .box { background: none; border: 0; box-shadow: none; border-radius: 0; margin: 0; }
.ed-side .box .heading {
	background: none; border: 0; margin: 0 0 12px; padding: 0 0 10px;
	border-bottom: 1px solid var(--ed-ink);
	font-size: .74rem; font-weight: 700;
	letter-spacing: .2em; text-transform: uppercase;
	font-family: var(--ed-sans);
	color: var(--ed-ink);
}
.ed-side .box_in { padding: 0; }
.ed-side__cta {
	border: 1px solid var(--ed-ink);
	padding: 22px;
	position: relative;
}
.ed-side__cta h2 {
	margin: 0 0 6px; padding: 0;
	font-size: 1.35rem; font-weight: 500;
	font-variation-settings: "opsz" 144;
	background: none; border: 0;
	letter-spacing: normal; text-transform: none;
	font-family: var(--ed-serif);
	color: var(--ed-ink);
}
.ed-side__cta p { margin: 0 0 14px; font-size: .88rem; color: var(--ed-ink-soft); }
.ed-side__cta .ed-btn { display: flex; width: 100%; }
.ed-side__cta .foot { margin: 10px 0 0; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ed-ink-mute); }
.ed-side__cta .ed-star { color: var(--ed-copper-deep); }
.ed-side ol.topnews { list-style: none; margin: 0; padding: 0; counter-reset: ed-top; }
.ed-side ol.topnews > li {
	counter-increment: ed-top;
	border-bottom: 1px solid var(--ed-line);
	padding: 10px 0;
}
.ed-side ol.topnews > li > a { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 10px; text-decoration: none; color: var(--ed-ink); font-size: .92rem; line-height: 1.4; }
.ed-side ol.topnews > li > a::before {
	content: counter(ed-top, decimal-leading-zero);
	font-family: var(--ed-serif); font-style: italic;
	color: var(--ed-copper-deep); font-size: 1rem;
}
.ed-side ol.topnews > li > a:hover { color: var(--ed-copper-deep); }
.ed-side ol.topnews > li > a > span { display: block; font-size: .72rem; color: var(--ed-ink-mute); letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; grid-column: 2; }

/* ---------- Breadcrumbs / pagetools ---------- */

/* ---------- System pages: strip boxes to editorial rules ---------- */

.box { border-radius: 0; box-shadow: none; border-color: var(--ed-line); }
.box .heading { border-radius: 0; }

input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="search"], textarea, select {
	border: 1px solid var(--ed-line-strong);
	border-radius: 2px;
	background: #fff;
	color: var(--ed-ink);
}
input:focus, textarea:focus, select:focus { border-color: var(--ed-ink); box-shadow: none; }

/* Auth pages (register / lostpassword) */

/* ---------- A11y / motion ---------- */

.c-captcha img { height: auto !important; }

@media (prefers-reduced-motion: no-preference) {
	.ed-reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
	.ed-reveal.is-visible { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
	.ed-toc__row:hover .ed-toc__arrow { transform: none; }
}
@view-transition { navigation: auto; }

h1, h2, h3, .ed-masthead h2 { text-wrap: balance; }
.ed-hero__lead, .ed-masthead__aside, .ed-quote__sub { text-wrap: pretty; }

/* ============================================================
   Responsive
   ============================================================ */
@media only screen and (max-width: 1360px) {
	.ed-nav { gap: 14px; }
	.ed-nav a { font-size: .7rem; letter-spacing: .12em; }
}
@media only screen and (max-width: 1220px) {
	.ed-header__phone { display: none; }
}
@media only screen and (max-width: 1000px) {
	.ed-hero__grid { grid-template-columns: 1fr; }
	.ed-hero__copy { grid-column: 1 / -1; }
	.ed-quote { grid-column: 1 / -1; margin-top: 26px; }
	.ed-family { grid-template-columns: 1fr; }
	.ed-family__copy { grid-column: 1 / -1; }
	.ed-family__photos { grid-column: 1 / -1; }
	.ed-quote-pull { grid-column: 1 / -1; }
	.ed-areas { grid-template-columns: 1fr; }
	.ed-areas__col + .ed-areas__col { border-left: 0; padding-left: 0; border-top: 1px solid var(--ed-line-strong); padding-top: clamp(2rem, 5vw, 3rem); }
	.ed-cols { grid-template-columns: 1fr; }

	.ed-toc__row { grid-template-columns: minmax(56px, 80px) minmax(0, 1fr) auto; }
	.ed-toc__desc { grid-column: 2 / -1; }
	.ed-toc__price { grid-column: 2; }
	.ed-toc__arrow { grid-column: 3; justify-self: end; }
	.ed-nav { display: none; }
	.ed-header__tools .ed-burger, .ed-burger { display: inline-flex; }

}
@media only screen and (max-width: 700px) {
	.ed-section { padding: var(--ed-sec-sm) 0; }
	.ed-masthead { grid-template-columns: 1fr; }
	.ed-masthead__aside { justify-self: start; }
	.ed-header__cta .ed-btn { display: none; }
	.ed-wordmark__name { font-size: 1.4rem; }
	.ed-chips--4 { grid-template-columns: repeat(2, 1fr); }
	.ed-chips--5 { grid-template-columns: repeat(3, 1fr); }
	.ed-steps li { grid-template-columns: 1fr; gap: 10px; }
	.ed-steps .num { padding: 2px 14px 2px 16px; }
	.ed-family__photos .ph--shift { margin-top: 20%; }
	.ed-faq summary { grid-template-columns: 34px minmax(0, 1fr) auto; gap: 10px; }
	.ed-faq details p { padding-left: 46px; }
	.ed-areas__list { columns: 1; }

	.ed-sticky { display: grid; }
	body { padding-bottom: 62px; }
	.ed-carousel__slide { flex-basis: 92%; }
	.ed-row-card { grid-template-columns: 1fr; }
	.ed-row-card__side { grid-column: 1; grid-row: auto; flex-direction: row; align-items: baseline; justify-content: space-between; width: 100%; }
}

/* ---------- Footer: back cover ---------- */
.ed-footer {
	background: var(--ed-teal-deep);
	color: var(--ed-mute-on-dark);
	padding: clamp(3.5rem, 6vw, 6rem) 0 2rem;
}
.ed-footer__mark {
	margin: 0 0 clamp(2rem, 4vw, 3.5rem);
	font-family: var(--ed-serif);
	font-weight: 420;
	font-variation-settings: "opsz" 144;
	font-size: clamp(2.6rem, 2rem + 5vw, 6.5rem);
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--ed-paper-on-dark);
	user-select: none;
}
.ed-footer__mark em { font-style: italic; font-weight: 330; color: var(--ed-copper-bright); }
.ed-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	gap: clamp(1.6rem, 3vw, 3rem);
	border-top: 1px solid var(--ed-line-on-dark);
	padding-top: clamp(1.8rem, 3vw, 2.6rem);
}
.ed-footer__about { margin: 0 0 16px; font-size: .92rem; line-height: 1.65; max-width: 34ch; }
.ed-footer__stars { display: grid; gap: 4px; font-size: .78rem; letter-spacing: .06em; color: var(--ed-mute-on-dark); }
.ed-footer__title {
	font-size: .7rem; font-weight: 700;
	letter-spacing: .22em; text-transform: uppercase;
	color: var(--ed-paper-on-dark);
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--ed-line-on-dark);
}
.ed-footer__phone {
	display: inline-block;
	margin-bottom: 12px;
	font-weight: 700; font-variant-numeric: tabular-nums;
	color: var(--ed-copper-bright); text-decoration: none;
}
.ed-footer__phone:hover { color: var(--ed-paper-on-dark); }
.ed-footer__links { display: grid; gap: 8px; }
.ed-footer__links a { font-size: .9rem; color: var(--ed-mute-on-dark); text-decoration: none; }
.ed-footer__links a:hover { color: var(--ed-paper-on-dark); }
.ed-footer__toggle {
	display: inline-block; margin-top: 10px; padding: 0;
	background: none; border: 0; cursor: pointer;
	font-family: var(--ed-sans); font-size: .8rem; font-weight: 600;
	color: var(--ed-copper-bright); text-decoration: underline; text-underline-offset: 3px;
}
.ed-footer__toggle:hover { color: var(--ed-paper-on-dark); }
.ed-footer__bottom {
	display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 10px 20px;
	border-top: 1px solid var(--ed-line-on-dark);
	margin-top: clamp(2rem, 4vw, 3rem);
	padding-top: 18px;
	font-size: .8rem;
}
.ed-footer__bottom a { color: var(--ed-mute-on-dark); text-decoration: none; }
.ed-footer__bottom a:hover { color: var(--ed-paper-on-dark); }
.ed-footer__bottom .links { display: flex; flex-wrap: wrap; gap: 18px; }
@media only screen and (max-width: 1000px) {
	.ed-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media only screen and (max-width: 560px) {
	.ed-footer__grid { grid-template-columns: 1fr; }
}

/* ---------- {login} widget in header ---------- */

/* ---------- UI cleanup pass ---------- */
/* Hide the {login} dropdown in the desktop header: it clutters a lead-gen site.
   Admins use /admin.php, guests can sign in on system pages. */

/* topnews: category span must stay in the text column */

/* Kill leftover roundings / shadows from styles.css widgets */
.c-captcha img {
	border-radius: 0 !important;
	box-shadow: none !important;
}
button[type="submit"], input[type="submit"] { border-radius: 2px !important; box-shadow: none !important; }
input, textarea, select { border-radius: 2px !important; box-shadow: none !important; }

/* Story cards outside the journal (search results, categories): flatten to editorial rows */

/* Heading strips on system boxes (comments, related, etc.) outside ed-main scope */
.box .heading {
	background: none;
	border-bottom: 1px solid var(--ed-ink);
	color: var(--ed-ink);
	font-family: var(--ed-serif);
	font-variation-settings: "opsz" 144;
	font-weight: 520;
}

/* Journal cards: hide rating stars/meta icons clutter on homepage feed */

/* Article: bookmark/edit icons must not overlap the headline */

/* ---------- Editorial story rows (category / search / journal lists) ---------- */
.ed-story-row .title { margin: 0 0 10px; font-size: var(--ed-fs-h3); font-weight: 500; font-variation-settings: "opsz" 144; }
.ed-story-row .title a { color: var(--ed-ink); text-decoration: none; }
.ed-story-row .title a:hover { font-style: italic; color: var(--ed-copper-deep); }
.ed-story-row .text { color: var(--ed-ink-soft); max-width: 70ch; }
.ed-story-row__foot {
	display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 8px 18px;
	border-top: 1px solid var(--ed-line);
	margin-top: 16px; padding-top: 12px;
}
.ed-story-row__meta {
	font-size: .72rem; font-weight: 600;
	letter-spacing: .14em; text-transform: uppercase;
	color: var(--ed-ink-mute);
}
.ed-story-row__meta a { color: var(--ed-copper-deep); text-decoration: none; }
.ed-journal .ed-story-row__foot { border-top: 0; padding-top: 4px; }

/* Hide the tags widget when the cloud is empty */

/* Sort bar on category pages: quiet kicker row */

/* Sort bar: no visible scrollbar */

/* ---------- Meta footer on full stories: quiet hairline colophon ---------- */

.story .meta ul.left {
	float: none;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.story .meta .icon {
	display: inline-block;
	width: 1em; height: 1em;
	fill: currentColor;
	vertical-align: -0.125em;
	margin-right: 2px;
}
.story .meta .grey, .story .meta time { color: var(--ed-ink-mute); }

/* Related posts: editorial rows without the decorative arrow glyph */

/* System box headings: serif, no uppercase inherited from styles.css */
.box .heading {
	text-transform: none;
	letter-spacing: -0.01em;
}

/* FAQ page variant: must win over the mobile 3-column rule (source order) */
.ed-faq--page summary { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
.ed-faq--page details p { padding-left: 2px; }

/* ---------- Mobile header layout fix ---------- */
/* .ed-nav carries margin-left:auto on desktop; once it hides, the cta group
   must push itself to the right edge and never wrap under the wordmark. */
.ed-header__bar { flex-wrap: nowrap; }
.ed-wordmark { min-width: 0; flex-shrink: 1; }
@media only screen and (max-width: 1000px) {
	.ed-header__cta { margin-left: auto; }
}
@media only screen and (max-width: 700px) {
	.ed-header__bar { gap: 6px; height: 60px; }
	.ed-header__cta { gap: 2px; }
	.ed-burger { width: 38px; height: 38px; flex: none; }
	.ed-burger .icon-menu { width: 16px; height: 12px; }
	.ed-mobile-menu { inset: 60px 0 0 0; }
	.ed-wordmark__name { font-size: 1.25rem; }
}

/* Review pull quotes: kill the engine.css BB-quote left border */
.ed-quote-pull blockquote { border: 0; background: none; padding: 0 0 0 2px; }
/* Real BB-quotes (comments/articles): brand copper instead of alert-orange */
blockquote { border-left-color: var(--ed-copper); }

/* ---------- Live Google reviews (google-reviews plugin output) ---------- */

/* When the plugin returns live reviews, the static fallback hides itself */

/* ---------- engine.css widgets: harmonize with the editorial system ---------- */
/* Fast-search suggestions dropdown */

/* jQuery-UI dialogs (DLE alerts, PM, quick edit) */

/* AJAX loading box + push notifications */

/* BB-editor toolbar buttons: square, quiet */

/* Captcha reload as a quiet button (was an empty-href link) */
.ed-captcha-reload { background: none; border: 0; padding: 0; cursor: pointer; display: block; }

/* Service area maps (Leaflet) */
.ed-areas__map { margin-top: clamp(2rem, 4vw, 3rem); }
.ed-map-tabs {
	display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
	margin: 0 0 14px;
}
.ed-map-tab {
	appearance: none; cursor: pointer;
	background: none;
	border: 1px solid var(--ed-line-strong);
	padding: 8px 18px;
	font-family: inherit; font-size: .8rem; font-weight: 600;
	letter-spacing: .1em; text-transform: uppercase;
	color: var(--ed-ink-soft);
	transition: all .15s ease;
}
.ed-map-tab:hover { border-color: var(--ed-ink); color: var(--ed-ink); }
.ed-map-tab.active { background: var(--ed-ink); border-color: var(--ed-ink); color: var(--ed-paper); }
.ed-map {
	height: 520px;
	border: 1px solid var(--ed-ink);
	background: #eae6de;
}
.ed-areas__map .ed-ba__caption { text-align: center; }
.ed-areas__map .ed-ba__caption a { text-decoration: underline; text-underline-offset: 2px; }
@media only screen and (max-width: 700px) {
	.ed-map { height: 440px; }
}
.ed-footer__contact { margin: 12px 0 0; font-size: .9rem; }
.ed-footer__contact a { color: var(--ed-copper-bright); text-decoration: none; }
.ed-footer__contact a:hover { color: var(--ed-paper-on-dark); }

/* "We speak Russian" note for the Sacramento/Portland Slavic community */
.ed-footer__ru { margin: 14px 0 0; font-size: .84rem; line-height: 1.6; color: var(--ed-mute-on-dark); max-width: 36ch; }
.ed-footer__ru a { color: var(--ed-copper-bright); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.ed-footer__ru a:hover { color: var(--ed-paper-on-dark); }

/* ---------- Cookie consent ---------- */
.ed-cookie {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 70;
	max-width: 380px;
	display: grid;
	gap: 14px;
	background: var(--ed-paper);
	border: 1px solid var(--ed-line-strong);
	border-radius: 4px;
	box-shadow: 0 18px 40px rgba(13, 59, 63, .18);
	padding: 22px 24px;
}
.ed-cookie[hidden] { display: none; }
.ed-cookie p { margin: 0; font-size: .86rem; line-height: 1.6; color: var(--ed-ink-soft); }
.ed-cookie a { color: var(--ed-copper-deep); text-decoration: underline; text-underline-offset: 3px; }
.ed-cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.ed-cookie .ed-btn { padding: 11px 22px; font-size: .78rem; }
@media only screen and (max-width: 640px) {
	.ed-cookie { left: 12px; right: 12px; bottom: 74px; max-width: none; }
}

/* ---------- Breadcrumbs, pagination, footer address ---------- */
.ed-breadcrumbs { font-size: .82rem; color: var(--ed-ink-mute); margin-bottom: 14px; }
.ed-breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 4px; }
.ed-breadcrumbs li + li::before { content: "\2192"; margin: 0 6px; color: var(--ed-ink-mute); }
.ed-breadcrumbs a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.ed-breadcrumbs [aria-current="page"] { color: var(--ed-ink-soft); }
.ed-pagination { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; }
.ed-pagination a { text-decoration: underline; text-underline-offset: 2px; }
.ed-footer__address { font-style: normal; color: inherit; margin-top: 8px; font-size: .9rem; }

/* ---------- Honeypot: visually gone, still in the form for bots ---------- */
.ed-hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); }

/* Dynamic calculator fields (step 2) */
.ed-quote__dyn { display: flex; flex-direction: column; gap: 18px; margin-bottom: 16px; }
.ed-quote__dyn-field textarea,
.ed-quote__dyn-field input[type=text] { width: 100%; padding: 10px 12px; border: 1px solid var(--ed-line-strong); border-radius: 8px; font: inherit; color: inherit; background: transparent; }
.ed-quote__estimate { margin: 4px 0 12px; font-size: 15px; }
.ed-quote__estimate strong { font-size: 18px; }
