/*
Theme Name: JN Residential
Theme URI: https://jnresidential.com
Author: J. N. Residential, Inc.
Description: A restrained, typography-led theme for a residential builder. Warm stone palette, editorial serif display type, hairline rules, and no decoration that is not doing work.
Version: 2.0
Requires at least: 6.4
Tested up to: 7.1
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jn-residential
Tags: business, one-column, custom-menu, custom-logo, editor-style, accessibility-ready
*/

/* ==========================================================================
   1. Tokens
   ========================================================================== */

:root {
	/* Palette — drawn from the hero photograph: cedar shingle, charcoal roof,
	   white trim, autumn light. Warm neutrals, one metallic accent. */
	--ink:        #16150F;
	--ink-2:      #24221B;
	--ink-3:      #3A362D;
	--body:       #555045;
	--muted:      #7B7466;
	--bone:       #F6F3ED;
	--bone-2:     #EDE8DE;
	--bone-3:     #E3DCCF;
	--line:       #DCD4C5;
	--line-soft:  #E8E2D7;
	--brass:      #8A6E45;
	--brass-2:    #A98A5C;
	--white:      #FFFFFF;

	/* On dark grounds */
	--d-bg:       #16150F;
	--d-bg-deep:  #100F0A;
	--d-text:     #EFEAE0;
	--d-muted:    #9C9483;
	--d-line:     rgba(239, 234, 224, 0.16);
	--d-line-soft:rgba(239, 234, 224, 0.09);

	/* Type */
	--serif: "Instrument Serif", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
	--sans:  "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--fs-hero:  clamp(2.75rem, 1.45rem + 5.2vw, 5.5rem);
	--fs-h1:    clamp(2.35rem, 1.5rem + 3.4vw, 4.25rem);
	--fs-h2:    clamp(1.95rem, 1.4rem + 2.3vw, 3.25rem);
	--fs-h3:    clamp(1.3rem, 1.12rem + 0.75vw, 1.75rem);
	--fs-h4:    clamp(1.08rem, 1.02rem + 0.28vw, 1.25rem);
	--fs-lead:  clamp(1.0625rem, 0.99rem + 0.42vw, 1.3125rem);
	--fs-body:  1rem;
	--fs-sm:    0.875rem;
	--fs-xs:    0.8125rem;
	--fs-eyebrow: 0.6875rem;

	/* Space */
	--gutter:  clamp(1.25rem, 4.5vw, 3.5rem);
	--sec-y:   clamp(4.5rem, 3rem + 6.5vw, 9.5rem);
	--sec-y-sm:clamp(3.25rem, 2.25rem + 4vw, 6rem);
	--wrap:    1240px;
	--wrap-narrow: 880px;

	--head-h:  84px;

	/* Motion */
	--ease:    cubic-bezier(0.22, 0.68, 0.24, 1);
	--dur:     0.45s;

	color-scheme: light;
}

@media (max-width: 900px) {
	:root { --head-h: 66px; }
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--head-h) + 1.5rem);
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
}

body {
	margin: 0;
	background: var(--bone);
	color: var(--body);
	font-family: var(--sans);
	font-size: var(--fs-body);
	line-height: 1.65;
	font-weight: 400;
	font-optical-sizing: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

ul, ol { margin: 0; padding: 0; list-style: none; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-family: var(--serif);
	font-weight: 400;
	color: var(--ink);
	line-height: 1.08;
	letter-spacing: -0.015em;
	text-wrap: balance;
}

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

::selection { background: var(--ink); color: var(--bone); }

:focus-visible {
	outline: 2px solid var(--brass);
	outline-offset: 3px;
	border-radius: 1px;
}

/* Skip link */
.skip-link {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -120%);
	z-index: 999;
	background: var(--ink);
	color: var(--bone);
	padding: 0.85rem 1.5rem;
	font-size: var(--fs-xs);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

/* ==========================================================================
   3. Layout primitives
   ========================================================================== */

.wrap {
	width: 100%;
	max-width: calc(var(--wrap) + var(--gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.wrap--narrow { max-width: calc(var(--wrap-narrow) + var(--gutter) * 2); }

.sec { padding-block: var(--sec-y); }
.sec--sm { padding-block: var(--sec-y-sm); }
.sec--flush-top { padding-top: 0; }
.sec--flush-bottom { padding-bottom: 0; }

.sec--bone2 { background: var(--bone-2); }
.sec--ink {
	background: var(--d-bg);
	color: var(--d-muted);
}
.sec--ink h1, .sec--ink h2, .sec--ink h3, .sec--ink h4 { color: var(--d-text); }

.rule { border-top: 1px solid var(--line); }
.sec--ink .rule { border-color: var(--d-line); }

/* ==========================================================================
   4. Type components
   ========================================================================== */

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.85em;
	font-family: var(--sans);
	font-size: var(--fs-eyebrow);
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--brass);
	margin: 0 0 1.5rem;
	line-height: 1;
}
.eyebrow::before {
	content: "";
	width: 2rem;
	height: 1px;
	background: currentColor;
	opacity: 0.55;
	flex: none;
}
.sec--ink .eyebrow, .on-dark .eyebrow { color: var(--brass-2); }
.eyebrow--center { justify-content: center; }

.h-hero { font-size: var(--fs-hero); letter-spacing: -0.025em; line-height: 1.0; }
.h-1    { font-size: var(--fs-h1);   letter-spacing: -0.022em; line-height: 1.04; }
.h-2    { font-size: var(--fs-h2);   letter-spacing: -0.02em;  line-height: 1.06; }
.h-3    { font-size: var(--fs-h3);   letter-spacing: -0.012em; line-height: 1.15; }
.h-4    { font-size: var(--fs-h4);   letter-spacing: -0.008em; line-height: 1.25; }

.lead {
	font-size: var(--fs-lead);
	line-height: 1.58;
	color: var(--ink-3);
	max-width: 62ch;
	text-wrap: pretty;
}
.sec--ink .lead, .on-dark .lead { color: var(--d-muted); }

.measure { max-width: 68ch; }
.measure--tight { max-width: 54ch; }

.sec-head { margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4.5rem); }
.sec-head .lead { margin-top: 1.25rem; }
.sec-head--center { text-align: center; }
.sec-head--center .lead { margin-inline: auto; }

/* An italic serif pull quote */
.pullquote {
	font-family: var(--serif);
	font-style: italic;
	font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.95rem);
	line-height: 1.32;
	letter-spacing: -0.015em;
	color: var(--ink);
	margin: 0;
	text-wrap: pretty;
}
.pullquote__cite {
	display: block;
	margin-top: 1.5rem;
	font-family: var(--sans);
	font-style: normal;
	font-size: var(--fs-xs);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}

/* ==========================================================================
   5. Buttons & links
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.7em;
	padding: 1.05rem 2rem;
	font-family: var(--sans);
	font-size: var(--fs-xs);
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1;
	border: 1px solid transparent;
	background: var(--ink);
	color: var(--bone);
	transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
	white-space: nowrap;
}
.btn:hover { background: var(--brass); border-color: var(--brass); color: var(--white); }

.btn--ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
}
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--bone); }

.btn--on-dark {
	background: transparent;
	color: var(--d-text);
	border-color: var(--d-line);
}
.btn--on-dark:hover { background: var(--bone); border-color: var(--bone); color: var(--ink); }

.btn--solid-light {
	background: var(--bone);
	color: var(--ink);
	border-color: var(--bone);
}
.btn--solid-light:hover { background: var(--brass-2); border-color: var(--brass-2); color: var(--ink); }

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem;
	align-items: center;
}

/* Arrow link */
.arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 0.65em;
	font-size: var(--fs-xs);
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink);
	padding-bottom: 0.45em;
	border-bottom: 1px solid var(--line);
	transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.arrow-link svg { transition: transform var(--dur) var(--ease); flex: none; }
.arrow-link:hover { color: var(--brass); border-color: var(--brass); }
.arrow-link:hover svg { transform: translateX(0.3rem); }
.sec--ink .arrow-link, .on-dark .arrow-link { color: var(--d-text); border-color: var(--d-line); }
.sec--ink .arrow-link:hover, .on-dark .arrow-link:hover { color: var(--brass-2); border-color: var(--brass-2); }

/* ==========================================================================
   6. Site header
   ========================================================================== */

.site-head {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	height: var(--head-h);
	display: flex;
	align-items: center;
	color: var(--ink);
	transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
	border-bottom: 1px solid transparent;
}
.site-head .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1rem, 3vw, 2.5rem);
	width: 100%;
}

/* Over the hero: transparent, light type */
body.has-hero .site-head { color: var(--d-text); }
body.has-hero .site-head .brand__sub { color: rgba(239, 234, 224, 0.62); }

/* Scrolled, or on an inner page: solid */
.site-head.is-solid {
	background: rgba(246, 243, 237, 0.94);
	-webkit-backdrop-filter: saturate(1.4) blur(14px);
	backdrop-filter: saturate(1.4) blur(14px);
	border-bottom-color: var(--line);
	color: var(--ink);
}
body.has-hero .site-head.is-solid { color: var(--ink); }
body.has-hero .site-head.is-solid .brand__sub { color: var(--muted); }

/* Brand */
.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	flex: none;
}
.brand__mark { flex: none; width: 30px; height: 30px; color: var(--brass); }
body.has-hero .site-head:not(.is-solid) .brand__mark { color: var(--brass-2); }
.brand__text { display: flex; flex-direction: column; gap: 0.18rem; line-height: 1; }
.brand__name {
	font-family: var(--serif);
	font-size: 1.3125rem;
	letter-spacing: 0.005em;
	line-height: 1;
	white-space: nowrap;
}
.brand__sub {
	font-size: 0.5625rem;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--muted);
	white-space: nowrap;
	transition: color var(--dur) var(--ease);
}
.brand__logo img { max-height: 44px; width: auto; }

/* Desktop nav */
.nav { display: flex; align-items: center; gap: clamp(1.15rem, 2.2vw, 2.25rem); }
.nav__item { position: relative; }
.nav__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.01em;
	padding-block: 0.4rem;
	position: relative;
	color: inherit;
	transition: color var(--dur) var(--ease), opacity var(--dur) var(--ease);
	white-space: nowrap;
}
.nav__link::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--dur) var(--ease);
}
.nav__link:hover::after,
.nav__item.is-current > .nav__link::after { transform: scaleX(1); }
.nav__link:hover { opacity: 0.7; }
.nav__caret { transition: transform var(--dur) var(--ease); flex: none; }
.nav__item.is-open .nav__caret { transform: rotate(180deg); }

/* Services dropdown */
.nav__panel {
	position: absolute;
	top: calc(100% + 1.15rem);
	left: 50%;
	transform: translateX(-50%) translateY(-0.5rem);
	min-width: 300px;
	background: var(--bone);
	border: 1px solid var(--line);
	padding: 0.5rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
	box-shadow: 0 24px 60px -24px rgba(22, 21, 15, 0.28);
	color: var(--ink);
}
.nav__item.is-open .nav__panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}
.nav__panel a {
	display: block;
	padding: 0.7rem 1rem;
	font-size: 0.9375rem;
	color: var(--ink-3);
	transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav__panel a:hover { background: var(--bone-2); color: var(--ink); }
.nav__panel li + li a { border-top: 1px solid var(--line-soft); }

/* Header actions */
.head-actions { display: flex; align-items: center; gap: 1.5rem; flex: none; }
.head-phone {
	display: inline-flex;
	align-items: center;
	gap: 0.55em;
	font-size: 0.9375rem;
	letter-spacing: 0.01em;
	white-space: nowrap;
	transition: color var(--dur) var(--ease);
}
.head-phone:hover { color: var(--brass); }
.head-actions .btn { padding: 0.85rem 1.4rem; font-size: 0.6875rem; }
body.has-hero .site-head:not(.is-solid) .head-actions .btn {
	background: transparent;
	border-color: var(--d-line);
	color: var(--d-text);
}
body.has-hero .site-head:not(.is-solid) .head-actions .btn:hover {
	background: var(--bone);
	border-color: var(--bone);
	color: var(--ink);
}

/* Burger */
.burger {
	display: none;
	width: 42px; height: 42px;
	align-items: center;
	justify-content: center;
	margin-right: -0.5rem;
}
.burger span {
	display: block;
	position: relative;
	width: 22px; height: 1px;
	background: currentColor;
	transition: background-color 0.2s var(--ease);
}
.burger span::before, .burger span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 22px; height: 1px;
	background: currentColor;
	transition: transform var(--dur) var(--ease), top var(--dur) var(--ease);
}
.burger span::before { top: -7px; }
.burger span::after  { top: 7px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1080px) {
	.nav, .head-actions .btn, .head-phone { display: none; }
	.burger { display: inline-flex; }
	.head-actions { gap: 0.5rem; }
}

/* Mobile drawer */
.drawer {
	position: fixed;
	inset: 0;
	z-index: 99;
	background: var(--bone);
	padding: calc(var(--head-h) + 2.5rem) var(--gutter) 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 2rem;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-1.25rem);
	transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }

.drawer__nav li + li { border-top: 1px solid var(--line); }
.drawer__nav a {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.95rem 0;
	font-family: var(--serif);
	font-size: clamp(1.6rem, 1.2rem + 2vw, 2.25rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--ink);
}
.drawer__nav a small {
	font-family: var(--sans);
	font-size: 0.625rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--brass);
}
.drawer__nav .is-sub a {
	font-family: var(--sans);
	font-size: 0.9375rem;
	letter-spacing: 0.01em;
	padding: 0.55rem 0 0.55rem 1.25rem;
	color: var(--body);
}
.drawer__nav .is-sub { border-top: 1px solid var(--line-soft); }

.drawer__foot { border-top: 1px solid var(--line); padding-top: 1.75rem; }
.drawer__foot a {
	display: block;
	font-size: 1.0625rem;
	margin-bottom: 0.4rem;
}
.drawer__foot .btn { margin-top: 1.25rem; width: 100%; }

/* ==========================================================================
   7. Hero
   ========================================================================== */

.hero {
	position: relative;
	isolation: isolate;
	min-height: min(94vh, 980px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-top: calc(var(--head-h) + 3rem);
	color: var(--d-text);
	background: var(--ink);
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: 50% 58%;
}
.hero__scrim {
	position: absolute; inset: 0; z-index: -1;
	background:
		linear-gradient(102deg, rgba(14, 13, 9, 0.66) 0%, rgba(14, 13, 9, 0.28) 42%, rgba(14, 13, 9, 0) 68%),
		linear-gradient(180deg, rgba(14, 13, 9, 0.55) 0%, rgba(14, 13, 9, 0.05) 22%, rgba(14, 13, 9, 0.10) 44%, rgba(14, 13, 9, 0.72) 84%, rgba(14, 13, 9, 0.88) 100%);
}

.hero__body { padding-bottom: clamp(2.75rem, 1.5rem + 4vw, 5rem); }
.hero .eyebrow { color: var(--brass-2); margin-bottom: 1.75rem; }
.hero h1 { color: var(--d-text); max-width: 17ch; }
.hero__lead {
	font-size: var(--fs-lead);
	line-height: 1.58;
	color: rgba(239, 234, 224, 0.82);
	max-width: 52ch;
	margin: 1.75rem 0 2.5rem;
	text-wrap: pretty;
}

/* Bottom rail */
.hero__rail {
	border-top: 1px solid var(--d-line);
	padding-block: 1.5rem clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
}
.hero__rail ul {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(1.5rem, 4vw, 4rem);
	align-items: center;
}
.hero__rail li {
	display: inline-flex;
	align-items: center;
	gap: 0.7em;
	font-size: var(--fs-xs);
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: rgba(239, 234, 224, 0.72);
}
.hero__rail li::before {
	content: "";
	width: 4px; height: 4px;
	background: var(--brass-2);
	flex: none;
	transform: rotate(45deg);
}

/* ==========================================================================
   8. Statement
   ========================================================================== */

.statement {
	font-family: var(--serif);
	font-size: clamp(1.5rem, 1.05rem + 1.9vw, 2.6rem);
	line-height: 1.28;
	letter-spacing: -0.018em;
	color: var(--ink);
	max-width: 22ch;
	text-wrap: pretty;
}
.statement-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 6rem);
	align-items: start;
}
.statement-grid__aside { padding-top: 0.6rem; }
@media (max-width: 860px) {
	.statement-grid { grid-template-columns: 1fr; }
	.statement { max-width: 26ch; }
}

/* ==========================================================================
   9. Services — editorial index rows
   ========================================================================== */

.svc-list { border-bottom: 1px solid var(--line); }

.svc-row {
	position: relative;
	isolation: isolate; /* keeps the ::before hover wash above the section background */
	display: grid;
	grid-template-columns: 4rem minmax(0, 1fr) minmax(0, 1.2fr) 2.5rem;
	gap: clamp(1rem, 3vw, 3rem);
	align-items: start;
	padding-block: clamp(1.75rem, 1.2rem + 2.2vw, 3rem);
	border-top: 1px solid var(--line);
	transition: color var(--dur) var(--ease);
}
.svc-row::before {
	content: "";
	position: absolute;
	inset: 0 calc(var(--gutter) * -0.5);
	background: var(--bone-2);
	opacity: 0;
	transition: opacity var(--dur) var(--ease);
	z-index: -1;
	pointer-events: none;
}
.sec--bone2 .svc-row::before { background: var(--bone-3); }
.svc-row:hover::before { opacity: 1; }

.svc-row__num {
	font-size: var(--fs-xs);
	letter-spacing: 0.14em;
	color: var(--brass);
	padding-top: 0.6em;
	font-variant-numeric: tabular-nums;
}
.svc-row__title {
	font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.5rem);
	letter-spacing: -0.022em;
	line-height: 1.05;
	transition: color var(--dur) var(--ease);
}
.svc-row:hover .svc-row__title { color: var(--brass); }
.svc-row__meta {
	display: block;
	margin-top: 0.75rem;
	font-family: var(--sans);
	font-size: var(--fs-xs);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}
.svc-row__desc { padding-top: 0.35rem; text-wrap: pretty; }
.svc-row__arrow {
	justify-self: end;
	align-self: center;
	color: var(--muted);
	transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.svc-row:hover .svc-row__arrow { transform: translateX(0.4rem); color: var(--brass); }

.svc-row__link::after { content: ""; position: absolute; inset: 0; }

@media (max-width: 860px) {
	.svc-row {
		grid-template-columns: 2.75rem minmax(0, 1fr);
		gap: 0.5rem 1rem;
	}
	.svc-row__desc { grid-column: 2; }
	.svc-row__arrow { display: none; }
	.svc-row__num { padding-top: 0.45em; }
}

/* ==========================================================================
   10. Two-column "why" block
   ========================================================================== */

.split {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(2.5rem, 5vw, 7rem);
	align-items: start;
}
.split__aside { position: sticky; top: calc(var(--head-h) + 3rem); }
@media (max-width: 940px) {
	.split { grid-template-columns: 1fr; }
	.split__aside { position: static; }
}

.reason-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 clamp(1.5rem, 4vw, 3.5rem);
}
.reason {
	padding-block: clamp(1.5rem, 1rem + 1.6vw, 2.25rem);
	border-top: 1px solid var(--line);
}
.reason__num {
	display: block;
	font-size: var(--fs-xs);
	letter-spacing: 0.16em;
	color: var(--brass);
	margin-bottom: 0.9rem;
	font-variant-numeric: tabular-nums;
}
.reason h3 { margin-bottom: 0.7rem; }
.reason p { font-size: var(--fs-sm); line-height: 1.68; text-wrap: pretty; }
@media (max-width: 620px) {
	.reason-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   11. Stats band
   ========================================================================== */

.stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stat {
	padding: clamp(1.75rem, 1rem + 2.5vw, 3rem) clamp(1rem, 2vw, 2rem);
	border-left: 1px solid var(--d-line);
	text-align: center;
}
.stat:first-child { border-left: 0; }
.stat__value {
	display: block;
	font-family: var(--serif);
	font-size: clamp(2.25rem, 1.5rem + 3.2vw, 4rem);
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--d-text);
	font-variant-numeric: lining-nums;
}
.stat__label {
	display: block;
	margin-top: 0.9rem;
	font-size: 0.6875rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--d-muted);
	line-height: 1.4;
}
@media (max-width: 780px) {
	.stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.stat:nth-child(3) { border-left: 0; }
	.stat:nth-child(n+3) { border-top: 1px solid var(--d-line); }
}

/* ==========================================================================
   12. About
   ========================================================================== */

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(2.5rem, 5vw, 6.5rem);
	align-items: start;
}
@media (max-width: 940px) {
	.about-grid { grid-template-columns: 1fr; }
}

.figure { position: relative; }
.figure img { width: 100%; }
.figure__frame {
	position: absolute;
	inset: -0.875rem -0.875rem auto auto;
	width: 45%;
	aspect-ratio: 1;
	border-top: 1px solid var(--brass);
	border-right: 1px solid var(--brass);
	opacity: 0.5;
	pointer-events: none;
}
.figure__quote {
	position: relative;
	margin: -3.5rem 2.5rem 0 -2.5rem;
	background: var(--bone);
	border-top: 2px solid var(--brass);
	padding: clamp(1.5rem, 1rem + 1.6vw, 2.25rem);
}
@media (max-width: 940px) {
	/* Single-column from here, so the card must not hang into the page gutter. */
	.figure__quote { margin: -2.5rem 2rem 0 0; }
}
@media (max-width: 640px) {
	.figure__quote { margin: -2rem 1rem 0 0; }
	.figure__frame { display: none; }
}

/* Checklist */
.checklist { margin-top: 2rem; }
.checklist li {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
	padding-block: 0.8rem;
	border-top: 1px solid var(--line-soft);
	font-size: var(--fs-sm);
	line-height: 1.55;
}
.checklist li:last-child { border-bottom: 1px solid var(--line-soft); }
.checklist svg { flex: none; color: var(--brass); margin-top: 0.25em; }

/* ==========================================================================
   13. Process
   ========================================================================== */

.process {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 2.75rem);
}
.step {
	position: relative;
	padding-top: 1.9rem;
	border-top: 1px solid var(--line);
}
.step::before {
	content: "";
	position: absolute;
	top: -3.5px; left: 0;
	width: 6px; height: 6px;
	background: var(--brass);
	transform: rotate(45deg);
}
.step__num {
	display: block;
	font-size: var(--fs-xs);
	letter-spacing: 0.16em;
	color: var(--brass);
	margin-bottom: 0.85rem;
	font-variant-numeric: tabular-nums;
}
.step h3 { margin-bottom: 0.65rem; }
.step p { font-size: var(--fs-sm); line-height: 1.65; text-wrap: pretty; }
@media (max-width: 860px) {
	.process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
	.process { grid-template-columns: 1fr; }
}

/* ==========================================================================
   14. Service areas
   ========================================================================== */

.areas { border-bottom: 1px solid var(--line); }
.area {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) 2.5rem;
	gap: clamp(1rem, 3vw, 3rem);
	align-items: baseline;
	padding-block: clamp(1.4rem, 1rem + 1.6vw, 2.25rem);
	border-top: 1px solid var(--line);
}
.area__name {
	font-size: clamp(1.75rem, 1.2rem + 2.4vw, 3.25rem);
	letter-spacing: -0.025em;
	line-height: 1.05;
	transition: color var(--dur) var(--ease);
}
.area__name sup {
	font-family: var(--sans);
	font-size: 0.6875rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--brass);
	vertical-align: super;
	margin-left: 0.6rem;
	top: 0;
}
.area__blurb { font-size: var(--fs-sm); line-height: 1.65; text-wrap: pretty; }
.area__arrow { justify-self: end; color: var(--muted); transition: transform var(--dur) var(--ease), color var(--dur) var(--ease); }
.area:hover .area__name { color: var(--brass); }
.area:hover .area__arrow { transform: translateX(0.4rem); color: var(--brass); }
@media (max-width: 860px) {
	.area { grid-template-columns: 1fr; gap: 0.75rem; }
	.area__arrow { display: none; }
}

/* ==========================================================================
   15. FAQ
   ========================================================================== */

.faq { border-bottom: 1px solid var(--line); }
.faq__item { border-top: 1px solid var(--line); }
.faq__q {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2rem;
	width: 100%;
	padding: clamp(1.15rem, 0.9rem + 0.9vw, 1.75rem) 0;
	text-align: left;
	font-family: var(--serif);
	font-size: clamp(1.125rem, 1rem + 0.6vw, 1.4375rem);
	line-height: 1.25;
	letter-spacing: -0.012em;
	color: var(--ink);
	list-style: none;
	cursor: pointer;
	transition: color var(--dur) var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--brass); }
.faq__sign {
	position: relative;
	flex: none;
	width: 14px; height: 14px;
	margin-top: 0.45em;
	color: var(--brass);
}
.faq__sign::before, .faq__sign::after {
	content: "";
	position: absolute;
	top: 50%; left: 0;
	width: 14px; height: 1px;
	background: currentColor;
	transform: translateY(-50%);
	transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.faq__sign::after { transform: translateY(-50%) rotate(90deg); }
.faq__item[open] .faq__sign::after { transform: translateY(-50%) rotate(0deg); opacity: 0; }
.faq__a {
	padding: 0 clamp(0rem, 8vw, 4rem) 1.75rem 0;
	max-width: 68ch;
	font-size: var(--fs-sm);
	line-height: 1.72;
	text-wrap: pretty;
	animation: faqIn 0.4s var(--ease) both;
}
@keyframes faqIn {
	from { opacity: 0; transform: translateY(-0.35rem); }
	to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
	.faq__a { animation: none; }
}

/* ==========================================================================
   16. Contact CTA band
   ========================================================================== */

.cta-band { text-align: center; }
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band .lead { margin: 1.5rem auto 0; max-width: 52ch; }

.contact-pair {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem);
	border-top: 1px solid var(--d-line);
	border-bottom: 1px solid var(--d-line);
}
.contact-pair a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
	padding: clamp(1.75rem, 1rem + 2.4vw, 2.75rem) 1rem;
	border-left: 1px solid var(--d-line);
	transition: background-color var(--dur) var(--ease);
}
.contact-pair a:first-child { border-left: 0; }
.contact-pair a:hover { background: rgba(239, 234, 224, 0.05); }
.contact-pair__label {
	font-size: 0.6875rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--brass-2);
}
.contact-pair__value {
	font-family: var(--serif);
	font-size: clamp(1.25rem, 1rem + 1.1vw, 1.875rem);
	letter-spacing: -0.015em;
	color: var(--d-text);
	line-height: 1.1;
	word-break: break-word;
}
@media (max-width: 620px) {
	.contact-pair { grid-template-columns: 1fr; }
	.contact-pair a { border-left: 0; }
	.contact-pair a + a { border-top: 1px solid var(--d-line); }
}

/* ==========================================================================
   17. Page hero (inner pages)
   ========================================================================== */

.page-hero {
	background: var(--d-bg);
	color: var(--d-muted);
	padding-top: calc(var(--head-h) + clamp(3rem, 2rem + 4vw, 6rem));
	padding-bottom: clamp(3rem, 2rem + 4vw, 6rem);
}
.page-hero h1 { color: var(--d-text); max-width: 18ch; }
.page-hero .lead { margin-top: 1.5rem; color: rgba(239, 234, 224, 0.78); }
.page-hero .eyebrow { color: var(--brass-2); }

.crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem;
	font-size: var(--fs-xs);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--d-muted);
	margin-bottom: 2rem;
}
.crumbs a { transition: color var(--dur) var(--ease); }
.crumbs a:hover { color: var(--brass-2); }
.crumbs span[aria-hidden] { opacity: 0.45; }

/* Page hero carrying a photograph (service pages) */
.page-hero--photo {
	position: relative;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: min(66vh, 660px);
	background: var(--d-bg);
}
.page-hero--photo .page-hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.page-hero--photo .page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 52%; }
.page-hero--photo .page-hero__scrim {
	position: absolute; inset: 0; z-index: -1;
	background:
		linear-gradient(102deg, rgba(14, 13, 9, 0.72) 0%, rgba(14, 13, 9, 0.34) 44%, rgba(14, 13, 9, 0.06) 72%),
		linear-gradient(180deg, rgba(14, 13, 9, 0.62) 0%, rgba(14, 13, 9, 0.12) 30%, rgba(14, 13, 9, 0.55) 78%, rgba(14, 13, 9, 0.82) 100%);
}

/* ==========================================================================
   Selected work
   ========================================================================== */

.work-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2.4vw, 2rem);
}
@media (max-width: 900px) { .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .work-grid { grid-template-columns: 1fr; } }

.work__frame {
	overflow: hidden;
	background: var(--bone-3);
	aspect-ratio: 4 / 3;
}
.work__frame img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1.1s var(--ease);
}
.work:hover .work__frame img { transform: scale(1.04); }
.work__cap {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 0.9rem;
	padding-top: 0.75rem;
	border-top: 1px solid var(--line);
	font-size: var(--fs-xs);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}
.work__cap span:last-child { color: var(--brass); }
.sec--bone2 .work__frame { background: var(--bone-3); }

@media (prefers-reduced-motion: reduce) {
	.work__frame img { transition: none; }
	.work:hover .work__frame img { transform: none; }
}

/* ==========================================================================
   18. Editorial prose (page/post content)
   ========================================================================== */

.prose {
	max-width: 68ch;
	font-size: 1.0625rem;
	line-height: 1.72;
	color: var(--body);
}
.prose > * + * { margin-top: 1.35em; }
.prose h2 { font-size: var(--fs-h2); margin-top: 2.2em; margin-bottom: 0.55em; }
.prose h3 { font-size: var(--fs-h3); margin-top: 1.9em; margin-bottom: 0.5em; }
.prose h4 { font-size: var(--fs-h4); margin-top: 1.7em; margin-bottom: 0.45em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose a {
	color: var(--ink);
	border-bottom: 1px solid var(--brass);
	transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.prose a:hover { color: var(--brass); }
.prose strong { font-weight: 600; color: var(--ink); }
.prose em { font-style: italic; }
.prose ul, .prose ol { padding-left: 1.35em; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul li {
	position: relative;
	padding-left: 1.45em;
	margin-top: 0.55em;
}
.prose ul li::before {
	content: "";
	position: absolute;
	left: 0; top: 0.72em;
	width: 5px; height: 1px;
	background: var(--brass);
}
.prose ol { list-style: decimal; }
.prose ol li { margin-top: 0.55em; padding-left: 0.35em; }
.prose blockquote {
	margin: 2em 0;
	padding-left: 1.5em;
	border-left: 2px solid var(--brass);
	font-family: var(--serif);
	font-style: italic;
	font-size: 1.35rem;
	line-height: 1.4;
	color: var(--ink);
}
.prose blockquote p { margin: 0; }
.prose img, .prose figure { margin-block: 2em; }
.prose figcaption {
	margin-top: 0.75rem;
	font-size: var(--fs-xs);
	color: var(--muted);
	letter-spacing: 0.02em;
}
.prose hr { margin-block: 2.5em; }
.prose code {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 0.9em;
	background: var(--bone-2);
	padding: 0.15em 0.4em;
}
.prose table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.prose th, .prose td { padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--line); text-align: left; }
.prose th { font-weight: 600; color: var(--ink); }

/* ==========================================================================
   19. Service detail page
   ========================================================================== */

.svc-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
	gap: clamp(2.5rem, 5vw, 6rem);
	align-items: start;
}
@media (max-width: 940px) { .svc-grid { grid-template-columns: 1fr; } }

.panel {
	background: var(--bone-2);
	padding: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
	border-top: 2px solid var(--brass);
}
.panel--sticky { position: sticky; top: calc(var(--head-h) + 2.5rem); }
@media (max-width: 940px) { .panel--sticky { position: static; } }
.panel h3 { margin-bottom: 1.25rem; }
.panel .btn { width: 100%; margin-top: 1.5rem; }

.mini-list li {
	padding-block: 0.7rem;
	border-top: 1px solid var(--line);
	font-size: var(--fs-sm);
	line-height: 1.55;
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
}
.mini-list li:first-child { border-top: 0; padding-top: 0; }
.mini-list svg { flex: none; color: var(--brass); margin-top: 0.28em; }

/* Related services */
.related {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 2.5rem);
}
@media (max-width: 780px) { .related { grid-template-columns: 1fr; } }
.related__item {
	position: relative;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
	transition: border-color var(--dur) var(--ease);
}
.related__item:hover { border-color: var(--brass); }
.related__item h3 { margin-bottom: 0.6rem; transition: color var(--dur) var(--ease); }
.related__item:hover h3 { color: var(--brass); }
.related__item p { font-size: var(--fs-sm); line-height: 1.6; }
.related__item a::after { content: ""; position: absolute; inset: 0; }

/* ==========================================================================
   20. Estimate form
   ========================================================================== */

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem clamp(1.25rem, 3vw, 2rem);
}
.field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
	display: block;
	font-size: var(--fs-xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 0.6rem;
}
.field .req { color: var(--brass); }
.field input,
.field select,
.field textarea {
	width: 100%;
	font: inherit;
	font-size: 1rem;
	color: var(--ink);
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--line);
	padding: 0.7rem 0;
	border-radius: 0;
	transition: border-color var(--dur) var(--ease);
	-webkit-appearance: none;
	appearance: none;
}
.field textarea { min-height: 7.5rem; resize: vertical; line-height: 1.6; }
.field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%238A6E45' stroke-width='1.2'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.25rem center;
	padding-right: 2rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-bottom-color: var(--brass);
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible { outline: none; }
.field ::placeholder { color: #ABA495; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-bottom-color: #A4402E; }
.field__error {
	display: block;
	margin-top: 0.5rem;
	font-size: var(--fs-xs);
	color: #A4402E;
}
.hp-field {
	position: absolute !important;
	left: -9999px;
	width: 1px; height: 1px;
	overflow: hidden;
}

.form-note {
	font-size: var(--fs-xs);
	color: var(--muted);
	line-height: 1.6;
	max-width: 52ch;
}

.notice {
	padding: 1.25rem 1.5rem;
	border-left: 2px solid var(--brass);
	background: var(--bone-2);
	font-size: var(--fs-sm);
	line-height: 1.6;
	margin-bottom: 2.5rem;
}
.notice--error { border-left-color: #A4402E; }
.notice strong { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   21. Footer
   ========================================================================== */

.site-foot {
	background: var(--d-bg-deep);
	color: var(--d-muted);
	border-top: 1px solid var(--d-line-soft);
	padding-top: clamp(3.5rem, 2.5rem + 4vw, 6rem);
	font-size: var(--fs-sm);
}
.site-foot a { transition: color var(--dur) var(--ease); }
.site-foot a:hover { color: var(--d-text); }

.foot-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
	gap: clamp(2rem, 4vw, 4rem);
	padding-bottom: clamp(2.5rem, 2rem + 3vw, 4.5rem);
}
@media (max-width: 940px) {
	.foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.foot-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
	.foot-grid { grid-template-columns: 1fr; }
}

.foot-brand .brand { color: var(--d-text); margin-bottom: 1.5rem; }
.foot-brand .brand__mark { color: var(--brass-2); }
.foot-brand .brand__sub { color: var(--d-muted); }
.foot-brand p { max-width: 42ch; line-height: 1.7; }

.foot-col h3 {
	font-family: var(--sans);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--brass-2);
	margin-bottom: 1.35rem;
}
.foot-col li { margin-bottom: 0.7rem; line-height: 1.5; }

.socials { display: flex; gap: 0.75rem; margin-top: 1.75rem; }
.socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px; height: 38px;
	border: 1px solid var(--d-line);
	transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.socials a:hover { background: var(--bone); border-color: var(--bone); color: var(--ink); }

.foot-bottom {
	border-top: 1px solid var(--d-line-soft);
	padding-block: 1.75rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem 2rem;
	font-size: var(--fs-xs);
	color: var(--d-muted);
}
.foot-credit { opacity: 0.72; letter-spacing: 0.04em; }
@media (max-width: 760px) {
	.foot-bottom { justify-content: flex-start; }
}

/* ==========================================================================
   22. Sticky mobile call bar
   ========================================================================== */

.callbar {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 90;
	display: none;
	grid-template-columns: repeat(2, 1fr);
	background: var(--ink);
	border-top: 1px solid var(--d-line);
}
.callbar a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6em;
	padding: 0.95rem 0.5rem;
	color: var(--d-text);
	font-size: var(--fs-xs);
	letter-spacing: 0.13em;
	text-transform: uppercase;
}
.callbar a + a { border-left: 1px solid var(--d-line); }
@media (max-width: 1080px) {
	.callbar { display: grid; }
	.site-foot { padding-bottom: 3.25rem; }
	.drawer { padding-bottom: 5rem; }
}

/* ==========================================================================
   23. Scroll reveal
   ========================================================================== */

.reveal {
	opacity: 0;
	transform: translateY(1.15rem);
	transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
	transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* No-JS: never hide content */
.no-js .reveal { opacity: 1; transform: none; }

/* ==========================================================================
   24. Utilities
   ========================================================================== */

.stack-sm > * + * { margin-top: 0.75rem; }
.stack   > * + * { margin-top: 1.5rem; }
.stack-lg > * + * { margin-top: 2.5rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.text-center { text-align: center; }
.nowrap { white-space: nowrap; }

/* WordPress core alignment classes */
.alignleft  { float: left;  margin: 0.5em 1.75em 1.25em 0; }
.alignright { float: right; margin: 0.5em 0 1.25em 1.75em; }
.aligncenter { margin-inline: auto; }
.alignwide, .alignfull { max-width: none; }
.wp-caption { max-width: 100%; }
.sticky, .gallery-caption, .bypostauthor { /* required by WP theme check */ }

/* Print */
@media print {
	.site-head, .drawer, .callbar, .hero__media, .hero__scrim { display: none !important; }
	body { background: #fff; color: #000; }
	.sec--ink, .site-foot { background: #fff !important; color: #000 !important; }
}
