/*
 * Will Creator theme.
 *
 * Lifted out of `themes/willcreator/layouts/main.cfm`, where it was ~960 lines
 * of inline <style> re-sent on every page view. As a file the browser fetches
 * it once and caches it, and a change here does not mean touching the layout.
 *
 * Static assets live under `public/` rather than beside the templates: a layout
 * is a .cfm, and a themes directory exposed to the web server would make
 * `layouts/main.cfm` directly requestable — and, behind mod_jk, executable.
 *
 * Two tokens defer to the site's own branding settings. `--brand-primary` and
 * `--brand-accent` are emitted by SiteBrandingService as a `:root` block after
 * this file loads; where a site has set nothing, the fallbacks below stand. That
 * is what lets a second client run this theme without it looking like the first.
 */

	
	:root {
	/* Colour ---------------------------------------------------------------- */
	--ink:        #1C2B27;   /* deep green-black text                          */
	--ink-soft:   #43514B;   /* secondary text                                */
	/* Deferred to the site's branding setting; the hex is the theme default. */
	--eucalypt:   var(--brand-primary, #3E5C50);
	--eucalypt-d: #2C4238;   /* darker brand for footers/hover                */
	--sage:       #8CA598;   /* soft sage for borders / quiet accents         */
	--sage-tint:  #DDE4DD;   /* pale sage panel                               */
	--paper:      #F5F1E8;   /* warm ivory page                               */
	--paper-2:    #EFEADD;   /* slightly deeper panel                         */
	--paper-line: #E2DBC9;   /* ledger hairline                               */
	--brass:      var(--brand-accent, #B08A4F);
	--brass-d:    #94713A;
	--claret:     #6B2E3A;   /* rare deep emphasis / wax seal                 */
	--white:      #FFFDF8;

	/* Type ------------------------------------------------------------------ */
	--display: var(--brand-font-heading, "Fraunces", Georgia, "Times New Roman", serif);
	--body:    var(--brand-font-body, "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);

	/* Scale ----------------------------------------------------------------- */
	--step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.9rem);
	--step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
	--step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
	--step-2:  clamp(1.55rem, 1.35rem + 1vw, 2.15rem);
	--step-3:  clamp(2rem, 1.6rem + 2vw, 3.1rem);
	--step-4:  clamp(2.6rem, 1.9rem + 3.4vw, 4.4rem);

	--wrap: 1180px;
	--radius: 3px;
	--shadow: 0 1px 2px rgba(28,43,39,.06), 0 12px 32px -18px rgba(28,43,39,.28);
	}

	/* Reset ------------------------------------------------------------------- */
	*, *::before, *::after { box-sizing: border-box; }
	* { margin: 0; }
	html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
	body {
	font-family: var(--body);
	font-size: var(--step-0);
	line-height: 1.65;
	color: var(--ink);
	background-color: var(--paper);
	/* faint paper grain via layered gradients, no image needed */
	background-image:
		radial-gradient(circle at 20% 12%, rgba(176,138,79,.05), transparent 45%),
		radial-gradient(circle at 82% 78%, rgba(62,92,80,.05), transparent 40%);
	-webkit-font-smoothing: antialiased;
	}
	img { max-width: 100%; display: block; }
	a { color: var(--eucalypt); text-decoration-thickness: 1px; text-underline-offset: 3px; }

	h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.08; color: var(--ink); }
	h1 { font-size: var(--step-4); letter-spacing: -.01em; }
	h1 { font-size: 2.1rem !important;}
	h2 { font-size: var(--step-3); letter-spacing: -.01em; }
	h3 { font-size: var(--step-2); }
	h4 { font-size: var(--step-1); }
	/* p  { max-width: 62ch; } */

	.wrap { width: min(100% - 3rem, var(--wrap)); margin-inline: auto; }
	.wrap--narrow { width: min(100% - 3rem, 760px); margin-inline: auto; }

	/* Eyebrow / structural label ---------------------------------------------- */
	.eyebrow {
	font-family: var(--body);
	font-weight: 700;
	font-size: var(--step--1);
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--brass-d);
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	}
	.eyebrow::before {
	content: "";
	width: 26px; height: 1px;
	background: var(--brass);
	display: inline-block;
	}

	/* Buttons ----------------------------------------------------------------- */
	.btn {
	--_bg: var(--eucalypt);
	--_fg: var(--white);
	display: inline-flex; align-items: center; gap: .55rem;
	font-family: var(--body); font-weight: 700; font-size: var(--step--1);
	letter-spacing: .04em; text-transform: uppercase;
	color: var(--_fg); background: var(--_bg);
	border: 1px solid var(--_bg);
	padding: .95em 1.7em; border-radius: var(--radius);
	cursor: pointer; text-decoration: none;
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
	}
	.btn:hover { background: var(--eucalypt-d); border-color: var(--eucalypt-d); transform: translateY(-2px); box-shadow: var(--shadow); }
	.btn:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }
	.btn--ghost { --_bg: transparent; --_fg: var(--ink); border-color: var(--sage); }
	.btn--ghost:hover { --_bg: var(--sage-tint); border-color: var(--eucalypt); transform: translateY(-2px); }
	.btn--brass { --_bg: var(--brass); border-color: var(--brass); }
	.btn--brass:hover { background: var(--brass-d); border-color: var(--brass-d); }
	.btn--lg { padding: 1.1em 2.2em; font-size: var(--step-0); text-transform: none; letter-spacing: .01em; }

	/* ============================================================================
	HEADER
	========================================================================== */
	.site-head {
	position: sticky; top: 0; z-index: 60;
	background: rgba(245,241,232,.86);
	backdrop-filter: saturate(140%) blur(8px);
	border-bottom: 1px solid var(--paper-line);
	}
	.site-head__bar {
	display: flex; align-items: center; justify-content: space-between;
	gap: 2rem; padding-block: .85rem;
	}
	.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
	.brand__seal { flex: none; width: 40px; height: 40px; }
	.brand__name { font-family: var(--display); font-size: 1.35rem; line-height: 1; }
	.brand__name b { font-weight: 500; }
	.brand__kicker {
	display: block; font-family: var(--body); font-size: .62rem;
	letter-spacing: .22em; text-transform: uppercase; color: var(--brass-d); margin-top: 3px;
	}
	.nav { display: flex; align-items: center; gap: 1.9rem; }
	.nav a {
	font-size: var(--step--1); font-weight: 600; letter-spacing: .02em;
	color: var(--ink-soft); text-decoration: none;
	}
	.nav a:hover { color: var(--eucalypt); }
	.nav__cta { margin-left: .4rem; }
	.nav-toggle { display: none; }

	/* ============================================================================
	HERO
	========================================================================== */
	.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 8vw, 7rem); }
	.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
	.hero__eyebrow { margin-bottom: 1.4rem; }
	.hero h1 { margin-bottom: 1.3rem; }
	.hero h1 em { font-style: italic; color: var(--eucalypt); }
	.hero__lead { font-size: var(--step-1); color: var(--ink-soft); max-width: 46ch; margin-bottom: 2rem; line-height: 1.5; }
	.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
	.hero__note { font-size: var(--step--1); color: var(--ink-soft); display: flex; align-items: center; gap: .5rem; }

	/* The signature: an engraved deed panel */
	.deed {
	position: relative; background: var(--white);
	border: 1px solid var(--paper-line);
	border-radius: var(--radius);
	padding: 2.2rem 2.2rem 2.4rem;
	box-shadow: var(--shadow);
	}
	.deed::before {
	/* double-rule border reminiscent of an engraved certificate */
	content: ""; position: absolute; inset: 10px;
	border: 1px solid var(--sage); border-radius: 1px; pointer-events: none;
	}
	.deed__head { text-align: center; border-bottom: 1px solid var(--paper-line); padding-bottom: 1.1rem; margin-bottom: 1.3rem; }
	.deed__title { font-family: var(--display); font-size: 1.5rem; letter-spacing: .02em; }
	.deed__sub {
	font-size: .68rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--brass-d);
	margin-top: .35rem;
	max-width: 100%;
	white-space: normal;
}
	.deed__list { list-style: none; padding: 0; display: grid; gap: .1rem; }
	.deed__list li { display: flex; align-items: center; gap: .85rem; padding: .7rem 0; border-bottom: 1px dashed var(--paper-line); }
	.deed__list li:last-child { border-bottom: 0; }
	.deed__list svg { flex: none; color: var(--eucalypt); }
	.deed__list b { font-weight: 700; }
	.deed__list span { font-size: var(--step--1); color: var(--ink-soft); display: block; }
	.deed__seal {
	position: absolute; right: -18px; bottom: -18px; width: 84px; height: 84px;
	filter: drop-shadow(0 6px 10px rgba(107,46,58,.28));
	}

	/* ============================================================================
	INSTRUMENTS (the three documents)
	========================================================================== */
	.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
	.section--paper2 { background: var(--paper-2); border-block: 1px solid var(--paper-line); }
	.section__head { max-width: 60ch; margin-bottom: 2.8rem; }
	.section__head h2 { margin: .8rem 0 1rem; }
	.section__head p { color: var(--ink-soft); font-size: var(--step-1); line-height: 1.5; }

	.instruments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
	.instrument {
	background: var(--white); border: 1px solid var(--paper-line);
	border-radius: var(--radius); padding: 2rem 1.8rem;
	display: flex; flex-direction: column; gap: .9rem;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	}
	.instrument:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sage); }
	.instrument__num { font-family: var(--display); font-size: .95rem; color: var(--brass); letter-spacing: .1em; }
	.instrument__icon { width: 46px; height: 46px; color: var(--eucalypt); }
	.instrument h3 { font-size: var(--step-1); }
	.instrument p { font-size: var(--step-0); color: var(--ink-soft); flex: 1; }
	.instrument__link { font-weight: 700; font-size: var(--step--1); text-transform: uppercase; letter-spacing: .06em; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
	.instrument__link::after { content: "→"; transition: transform .2s ease; }
	.instrument:hover .instrument__link::after { transform: translateX(4px); }

	/* ============================================================================
	PROCESS (real 4-step sequence — numbering earns its place here)
	========================================================================== */
	.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
	.process__step { position: relative; padding: 0 1.6rem; }
	.process__step + .process__step { border-left: 1px solid var(--paper-line); }
	.process__num {
	font-family: var(--display); font-size: 2.6rem; color: var(--eucalypt);
	line-height: 1; display: block; margin-bottom: .8rem;
	}
	.process__step h4 { margin-bottom: .5rem; font-size: var(--step-1); }
	.process__step p { font-size: var(--step-0); color: var(--ink-soft); }

	/* ============================================================================
	ASSURANCE / TRUST strip
	========================================================================== */
	.assure { background: var(--eucalypt-d); color: var(--paper); }
	.assure .wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; padding-block: clamp(3rem,6vw,5rem); }
	.assure h2 { color: var(--white); margin-bottom: 1rem; }
	.assure p { color: rgba(245,241,232,.82); }
	.assure__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
	.stat { border-top: 1px solid rgba(140,165,152,.4); padding-top: 1rem; }
	.stat b { font-family: var(--display); font-size: var(--step-3); color: var(--brass); display: block; line-height: 1; }
	.stat span { font-size: var(--step--1); letter-spacing: .04em; color: rgba(245,241,232,.75); }

	/* ============================================================================
	CALL TO ACTION band
	========================================================================== */
	.cta-band { text-align: center; }
	.cta-band h2 { margin-bottom: 1rem; }
	.cta-band p { margin: 0 auto 2rem; color: var(--ink-soft); font-size: var(--step-1); }

	/* ============================================================================
	FOOTER
	========================================================================== */
	.site-foot { background: var(--ink); color: rgba(245,241,232,.72); padding-block: 3.5rem 2rem; }
	.site-foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
	.site-foot h5 { font-family: var(--body); font-weight: 700; font-size: var(--step--1); letter-spacing: .12em; text-transform: uppercase; color: var(--brass); margin-bottom: 1rem; }
	.site-foot a { color: rgba(245,241,232,.72); text-decoration: none; display: block; padding: .28rem 0; }
	.site-foot a:hover { color: var(--white); }
	.site-foot__brand p { font-size: var(--step--1); line-height: 1.6; margin-top: 1rem; max-width: 34ch; }
	.site-foot__legal { border-top: 1px solid rgba(245,241,232,.14); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: var(--step--1); }
	.site-foot__legal p { max-width: none; }

	/* ============================================================================
	FORM WIZARD  (create-documents page)
	========================================================================== */
	.wizard { padding-block: clamp(2rem, 5vw, 4rem); }
	.wizard__layout { display: grid; grid-template-columns: 260px 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; }

	/* progress rail */
	.rail { position: sticky; top: 90px; }
	.rail ol { list-style: none; padding: 0; display: grid; gap: .2rem; }
	.rail li { display: flex; gap: .9rem; padding: .7rem .6rem; border-radius: var(--radius); align-items: flex-start; }
	.rail li[data-state="active"] { background: var(--white); border: 1px solid var(--paper-line); }
	.rail__dot { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--sage); display: grid; place-items: center; font-size: .78rem; font-weight: 700; color: var(--ink-soft); background: var(--paper); }
	.rail li[data-state="active"] .rail__dot { background: var(--eucalypt); color: var(--white); border-color: var(--eucalypt); }
	.rail li[data-state="done"] .rail__dot { background: var(--brass); color: var(--white); border-color: var(--brass); }
	.rail__label b { display: block; font-size: var(--step--1); }
	.rail__label span { font-size: .74rem; color: var(--ink-soft); }

	/* form panel styled like a drawn deed */
	.form-deed { background: var(--white); border: 1px solid var(--paper-line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
	.form-deed__head { padding: 1.6rem 2rem; border-bottom: 1px solid var(--paper-line); background: var(--paper-2); }
	.form-deed__head .eyebrow { margin-bottom: .5rem; }
	.form-deed__head h2 { font-size: var(--step-2); }
	.form-deed__head p { font-size: var(--step-0); color: var(--ink-soft); margin-top: .4rem; }
	.form-deed__body { padding: 2rem; }

	.fieldset { border: 0; padding: 0; margin: 0; }
	.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.4rem; }
	.field { display: flex; flex-direction: column; gap: .4rem; }
	.field--full { grid-column: 1 / -1; }
	.field label { font-size: var(--step--1); font-weight: 700; letter-spacing: .02em; }
	.field label .req { color: var(--claret); }
	.field .hint { font-size: .78rem; color: var(--ink-soft); }
	.field input, .field select, .field textarea {
	font-family: var(--body); font-size: var(--step-0); color: var(--ink);
	background: var(--paper); border: 1px solid var(--paper-line);
	border-radius: var(--radius); padding: .75em .85em; width: 100%;
	}
	.field input:focus, .field select:focus, .field textarea:focus {
	outline: none; border-color: var(--eucalypt); background: var(--white);
	box-shadow: 0 0 0 3px rgba(62,92,80,.12);
	}
	.field textarea { min-height: 110px; resize: vertical; }

	.form-actions { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--paper-line); }
	.step { display: none; }
	.step[data-active="true"] { display: block; animation: fade .35s ease; }
	@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

	.notice {
	display: flex; gap: .9rem; background: var(--sage-tint); border: 1px solid var(--sage);
	border-radius: var(--radius); padding: 1rem 1.2rem; font-size: var(--step--1); color: var(--ink-soft);
	}
	.notice svg { flex: none; color: var(--eucalypt); }

	/* repeatable person block (executors, beneficiaries) */
	.person-card { border: 1px dashed var(--paper-line); border-radius: var(--radius); padding: 1.3rem; margin-bottom: 1rem; background: var(--paper); }
	.person-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
	.person-card__head b { font-family: var(--display); font-size: var(--step-1); }
	.btn-remove { background: none; border: 0; color: var(--claret); font-weight: 700; font-size: var(--step--1); cursor: pointer; }
	.btn-add { background: none; border: 1px dashed var(--sage); color: var(--eucalypt); font-weight: 700; padding: .8em 1.2em; border-radius: var(--radius); cursor: pointer; width: 100%; letter-spacing: .02em; }
	.btn-add:hover { background: var(--sage-tint); }

	/* review summary */
	.review-group { border: 1px solid var(--paper-line); border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden; }
	.review-group h4 { background: var(--paper-2); padding: .85rem 1.1rem; font-family: var(--body); font-weight: 700; font-size: var(--step--1); text-transform: uppercase; letter-spacing: .08em; display: flex; justify-content: space-between; }
	.review-group dl { margin: 0; padding: 1.1rem; display: grid; grid-template-columns: 200px 1fr; gap: .5rem 1rem; }
	.review-group dt { font-weight: 700; font-size: var(--step--1); }
	.review-group dd { margin: 0; font-size: var(--step--1); color: var(--ink-soft); }

	/* ============================================================================
	AUTH (sign-up / sign-in)
	========================================================================== */
	.auth { min-height: 70vh; display: grid; place-items: center; padding-block: 3rem; }
	.auth__card { width: min(100% - 3rem, 460px); }
	.auth__card .form-deed__body { padding: 2rem; }
	.auth__alt { text-align: center; font-size: var(--step--1); color: var(--ink-soft); margin-top: 1.4rem; }

	/* ============================================================================
	RESPONSIVE
	========================================================================== */
	@media (max-width: 900px) {
	.hero__grid { grid-template-columns: 1fr; }
	.instruments { grid-template-columns: 1fr; }
	.process { grid-template-columns: 1fr 1fr; gap: 2rem 0; }
	.process__step + .process__step { border-left: 0; }
	.assure .wrap { grid-template-columns: 1fr; }
	.site-foot__grid { grid-template-columns: 1fr 1fr; }
	.wizard__layout { grid-template-columns: 1fr; }
	.rail { position: static; }
	.rail ol { grid-auto-flow: column; overflow-x: auto; }
	}
	@media (max-width: 680px) {
	.nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--paper-line); padding: .5rem 1.5rem 1.5rem; }
	.nav.is-open { display: flex; }
	.nav a { padding: .9rem 0; border-bottom: 1px solid var(--paper-line); }
	.nav__cta { margin: 1rem 0 0; }
	.nav-toggle { display: inline-flex; background: none; border: 1px solid var(--sage); border-radius: var(--radius); padding: .5rem .7rem; cursor: pointer; }
	.field-grid { grid-template-columns: 1fr; }
	.process { grid-template-columns: 1fr; }
	.site-foot__grid { grid-template-columns: 1fr; }
	.review-group dl { grid-template-columns: 1fr; }
	}

	@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; scroll-behavior: auto; }
	}

	/* Focus visibility everywhere */
	a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
	outline: 3px solid var(--brass); outline-offset: 2px;
	}

	 /* ==========================================================================
               RESET & CONTAINER STYLES
               ========================================================================== */
		   #navPrimary,
		   #navPrimary ul {
			 list-style: none;
			 margin: 0;
			 padding: 0;
		   }
		   
		   #navPrimary {
			 display: flex;
			 flex-wrap: wrap;
			 font-family: inherit;
		   }
		   
		   /* Base link styling across all levels */
		   #navPrimary a.nav-link {
			 display: block;
			 text-decoration: none;
			 color: #003366;
			 padding: 8px 14px;
			 font-size: 15px;
			 font-weight: 500;
			 transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
			 white-space: nowrap;
		   }
		   
		   #navPrimary a.nav-link:hover,
		   #navPrimary a.nav-link:focus {
			 background-color: #C19B43;
			 color: #ffffff;
		   }
		   
		   #navPrimary li.nav-item {
			 position: relative;
		   }
		   
		   #navPrimary > li.nav-item {
			 float: left;
			 border-radius: 3px;
		   }
		   
		   #navPrimary > li.dropdown > a.dropdown-toggle::after {
			 content: " \25BE";
			 font-size: 11px;
			 margin-left: 6px;
		   }
		   
		   li.nav-item.active {
			 background-color: #D6BC83;
			 border-top: 2px solid #C19B43;
		   }
		   
		   li.nav-item.active a {
			 color: #003366 !important;
		   }
		   
		   .nav-toggle {
			 display: none;
			 background: transparent;
			 border: none;
			 color: #ffffff;
			 font-size: 24px;
			 padding: 10px 15px;
			 cursor: pointer;
		   }
		   
		   /* ==========================================================================
			  DESKTOP VIEW ONLY (Hover dropdowns)
			  ========================================================================== */
		   @media (min-width: 992px) {
			 /* Level 2 Submenu */
			 #navPrimary > li > ul.dropdown-menu {
			   display: none;
			   position: absolute;
			   top: 100%;
			   left: 0;
			   min-width: 230px;
			   background-color: #ffffff;
			   box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
			   border-top: 3px solid #C19B43;
			   z-index: 1000;
			 }
		   
			 #navPrimary > li:hover > ul.dropdown-menu,
			 #navPrimary > li:focus-within > ul.dropdown-menu {
			   display: block;
			 }
		   
			 #navPrimary > li > ul.dropdown-menu a.nav-link {
			   color: #333333;
			   padding: 10px 18px;
			   font-size: 14px;
			   border-bottom: 1px solid #f0f0f0;
			 }
		   
			 #navPrimary > li > ul.dropdown-menu a.nav-link:hover,
			 #navPrimary > li > ul.dropdown-menu a.nav-link:focus {
			   background-color: #f8f9fa;
			   color: #C19B43;
			   padding-left: 22px;
			 }
		   
			 /* Level 3 Flyout Submenu */
			 #navPrimary ul.dropdown-menu ul.dropdown-menu {
			   display: none;
			   position: absolute;
			   top: 0;
			   left: 100%;
			   min-width: 230px;
			   background-color: #ffffff;
			   box-shadow: 2px 8px 16px rgba(0, 0, 0, 0.18);
			   border-left: 3px solid #C19B43;
			   z-index: 1001;
			 }
		   
			 #navPrimary ul.dropdown-menu > li:hover > ul.dropdown-menu,
			 #navPrimary ul.dropdown-menu > li:focus-within > ul.dropdown-menu {
			   display: block;
			 }
		   
			 #navPrimary ul.dropdown-menu > li.dropdown > a.dropdown-toggle::after {
			   content: " \25B8";
			   float: right;
			   margin-left: 10px;
			 }
		   
			 #navPrimary ul.dropdown-menu ul.dropdown-menu a.nav-link {
			   color: #333333;
			 }
		   
			 #navPrimary ul.dropdown-menu ul.dropdown-menu a.nav-link:hover {
			   background-color: #f8f9fa;
			   color: #C19B43;
			 }
		   }
		   
		   /* ==========================================================================
			  MOBILE MEDIA QUERY
			  ========================================================================== */
		   @media (max-width: 991px) {
			 .nav-toggle {
			   display: block;
			   /*background-color: #003366;*/
			   width: 80%;
			   text-align: right;
			 }
		   
			 /* Hide navbar list initially */
			 #primary-nav #navPrimary {
			   display: none;
			   flex-direction: column;
			   width: 100%;
			   background-color: #ffffff;
			 }
		   
			 /* Show navigation when .is-open is added to #primary-nav */
			 #primary-nav.is-open #navPrimary {
			   display: flex;
			 }
			 
			 
		   
			 /* Flatten all submenus (Levels 2 & 3) */
			 #primary-nav ul.dropdown-menu {
			   position: static;
			   display: none;
			   box-shadow: none;
			   border: none;
			   background-color: #f8f9fa;
			   padding-left: 15px;
			 }
		   
			 /* Show submenus (Level 2 & Level 3) when parent has .open */
			 #primary-nav.is-open li.dropdown.open > ul.dropdown-menu {
			   display: block;
			 }

			 /* A parent at ANY depth needs a caret here, not just the top row.
			    Without one, a nested item that opens a submenu is
			    indistinguishable from one that navigates — and tapping it does
			    something different from what it looks like it will do. The
			    desktop rule for this lives in the min-width block and so never
			    applied on a phone. */
			 #primary-nav li.dropdown > a.dropdown-toggle::after {
			   content: " \25BE";
			   float: right;
			   font-size: 11px;
			   margin-left: 10px;
			 }

			 #primary-nav li.dropdown.open > a.dropdown-toggle::after {
			   content: " \25B4";
			 }
		   
			 #primary-nav ul.dropdown-menu a.nav-link {
			   color: #333333;
			   padding: 8px 15px;
			   border-bottom: 1px solid #eeeeee;
			 }
			 
			 header.site-head {
				 position: relative;
			 }
		   }
		   
		   
		   /* ==========================================================================
			  Mura CMS Form Styling
			  ========================================================================== */
		   
		   /* Form Wrapper & Containers */
		   .mura-form {
			 max-width: 600px;
			 margin: 2rem auto;
			 padding: 2rem;
			 background-color: #f5f1e8;
			 border-radius: 8px;
			 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
			 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
			 color: #333333;
			 box-sizing: border-box;
		   }
		   
		   .mura-form *, 
		   .mura-form *::before, 
		   .mura-form *::after {
			 box-sizing: inherit;
		   }
		   
		   /* Error Container */
		   [class^="error-container-"] {
			 margin-bottom: 1rem;
			 color: #d9534f;
			 font-size: 0.875rem;
			 empty-cells: hide;
		   }
		   
		   /* Form Sections & Dividers */
		   .mura-section {
			 font-size: 1.25rem;
			 font-weight: 600;
			 color: #1a1a1a;
			 margin-bottom: 0.5rem;
		   }
		   
		   .mura-divide {
			 height: 1px;
			 background-color: #e5e7eb;
			 margin-bottom: 1.5rem;
		   }
		   
		   /* Control Groups (Field Containers) */
		   .mura-control-group {
			 margin-bottom: 1.25rem;
			 position: relative;
		   }
		   
		   /* Form Labels */
		   .mura-control-group label {
			 display: flex;
			 justify-content: space-between;
			 align-items: center;
			 margin-bottom: 0.5rem;
			 font-weight: 500;
			 font-size: 0.9rem;
			 color: #4b5563;
		   }
		   
		   /* Required Indicator Badge */
		   .mura-control-group label ins {
			 text-decoration: none;
			 font-size: 0.75rem;
			 font-weight: 600;
			 text-transform: uppercase;
			 color: #ef4444;
			 background-color: #fef2f2;
			 padding: 0.15rem 0.5rem;
			 border-radius: 4px;
		   }
		   
		   /* Form Inputs */
		   .mura-form .form-control {
			 width: 100%;
			 padding: 0.625rem 0.875rem;
			 font-size: 0.95rem;
			 line-height: 1.5;
			 color: #1f2937;
			 background-color: #f9fafb;
			 border: 1px solid #d1d5db;
			 border-radius: 6px;
			 transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
		   }
		   
		   .mura-form .form-control:hover {
			 border-color: #9ca3af;
		   }
		   
		   .mura-form .form-control:focus {
			 outline: none;
			 background-color: #ffffff;
			 border-color: #2563eb;
			 box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
		   }
		   
		   /* Form Group & reCAPTCHA Alignment */
		   .form-group {
			 margin-bottom: 1.5rem;
		   }
		   
		   .g-recaptcha-container {
			 display: flex;
			 justify-content: flex-start;
			 margin-top: 0.5rem;
		   }
		   
		   /* Submit Button & Pagination */
		   [class^="paging-container-"] {
			 margin-top: 1.5rem;
		   }
		   
		   .mura-form-submit {
			 width: 100%;
			 padding: 0.75rem 1.5rem;
			 font-size: 1rem;
			 font-weight: 600;
			 color: #ffffff;
			 background-color: #2563eb;
			 border: 1px solid transparent;
			 border-radius: 6px;
			 cursor: pointer;
			 transition: background-color 0.2s ease, transform 0.1s ease;
		   }
		   
		   .mura-form-submit:hover {
			 background-color: #1d4ed8;
		   }
		   
		   .mura-form-submit:active {
			 transform: translateY(1px);
		   }
		   
		   /* Responsive Rules */
		   @media (max-width: 480px) {
			 .mura-form {
			   padding: 1.25rem;
			   margin: 1rem;
			 }
		   }

		   /* ============================================================
   Will Creator — Typography & Layout Refresh
   Target: MasaCMS / Mura blog + content pages
   ============================================================ */

/* Google Font import (professional serif for body + clean sans for headings) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&display=swap');

/* ---------- Page background & base ---------- */
body#blog,
body {
    background: #f7f5f0;
    color: #1f2a37;
    font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---------- Main content container ---------- */
main {
    display: block;
    padding: 40px 20px 80px;
}

main .section {
    max-width: 1185px;
    margin: 0 auto;
    background: #ffffff;
    padding: 56px 64px;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

main .section .wrap {
    max-width: 100%;
}

/* ---------- Region wrappers (Mura) ---------- */
.mura-region,
.mura-region-loose,
.mura-region-local {
    width: 100%;
}

/* ---------- Headings ---------- */
main .section h1,
main .section h2,
main .section h3,
main .section h4,
main .section h5,
main .section h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #0f2a4a;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 1.8em 0 0.6em;
    font-weight: 700;
    text-align: left;
}

main .section h3 {
    font-size: 2rem;
    margin-top: 0;
    padding-bottom: 0.4em;
    border-bottom: 3px solid #c9a961;
    display: inline-block;
}

main .section h4 { font-size: 1.4rem; }
main .section h5 { font-size: 1.15rem; }

/* ---------- Paragraphs (justified) ---------- */
main .section p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    margin: 0 0 1.2em;
    color: #2b3644;
}

/* Remove empty spacer paragraphs that only contain &nbsp; */
main .section p:empty,
main .section p:has(> br:only-child) {
    display: none;
}

/* Strong / emphasis intro lines act as sub-headers */
main .section p > strong:only-child {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #0f2a4a;
    margin: 1.8em 0 0.4em;
    letter-spacing: -0.005em;
}

/* ---------- Lists ---------- */
main .section ul,
main .section ol {
    padding-left: 1.4em;
    margin: 0 0 1.5em;
}

main .section ul li,
main .section ol li {
    text-align: justify;
    hyphens: auto;
    margin-bottom: 0.7em;
    padding-left: 0.4em;
}

main .section ul {
    list-style: none;
    padding-left: 0;
}

main .section ul li {
    position: relative;
    padding-left: 1.8em;
}

main .section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #c9a961;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

/* ---------- Links ---------- */
main .section a {
    color: #0f2a4a;
    text-decoration: underline;
    text-decoration-color: #c9a961;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

main .section a:hover {
    color: #c9a961;
}

/* ---------- Blockquotes ---------- */
main .section blockquote {
    border-left: 4px solid #c9a961;
    padding: 0.2em 1.4em;
    margin: 1.6em 0;
    font-style: italic;
    color: #4b5563;
    background: #fbf8f1;
}

/* ---------- Images ---------- */
main .section img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 1.4em 0;
    display: block;
}

/* ============================================================================
	SERVICE SHOWCASE (alternating image / copy bands)
	========================================================================== */
	.service-showcase {
		display: flex;
		flex-direction: column;
		gap: 1.75rem;
	}
	.service-showcase__title,
	main .section .service-showcase > h1,
	main .section .service-showcase > h2 {
		font-family: var(--display);
		font-weight: 400;
		font-size: var(--step-3);
		letter-spacing: -.01em;
		text-align: center;
		color: var(--ink);
		margin: 0 0 .4rem;
		padding: 0;
		border: 0;
		display: block;
		width: 100%;
	}
	.service-row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
		min-height: 280px;
		overflow: hidden;
		background: var(--ink);
		background: color-mix(in srgb, var(--eucalypt) 86%, #000);
		box-shadow: var(--shadow);
		border-radius: 4.5rem 0 4.5rem 0;
	}
	.service-row--flip {
		border-radius: 0 4.5rem 0 4.5rem;
	}
	.service-row--flip .service-row__media {
		order: 2;
	}
	.service-row__media {
		position: relative;
		min-height: 260px;
		overflow: hidden;
	}
	.service-row__media img,
	main .section .service-row__media img,
	.service-row__media figure,
	.service-row__media figure img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		margin: 0;
		border-radius: 0;
		display: block;
		max-width: none;
	}
	.service-row__media figure {
		margin: 0;
	}
	.service-row__body {
		position: relative;
		isolation: isolate;
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 1rem;
		padding: clamp(2rem, 4.5vw, 3.4rem) clamp(1.8rem, 4vw, 3.4rem);
		color: var(--white);
		overflow: hidden;
	}
	.service-row__body::before {
		content: "";
		position: absolute;
		width: min(72%, 280px);
		aspect-ratio: 1;
		inset: auto -18% -38% auto;
		pointer-events: none;
		z-index: 0;
		background:
			radial-gradient(circle at 100% 100%,
				transparent 26%,
				color-mix(in srgb, var(--brass) 28%, transparent) 27%,
				color-mix(in srgb, var(--brass) 28%, transparent) 40%,
				transparent 41%,
				transparent 50%,
				rgba(255,253,248,.10) 51%,
				rgba(255,253,248,.10) 64%,
				transparent 65%);
	}
	.service-row--flip .service-row__body {
		text-align: right;
		align-items: flex-end;
	}
	.service-row--flip .service-row__body::before {
		inset: auto auto -38% -18%;
		transform: scaleX(-1);
	}
	.service-row__body > * {
		position: relative;
		z-index: 1;
	}
	main .section .service-row__body h3,
	.service-row__body h3 {
		font-family: var(--display);
		font-weight: 400;
		font-size: var(--step-2);
		line-height: 1.15;
		letter-spacing: -.01em;
		color: var(--white);
		margin: 0;
		padding: 0;
		border: 0;
		display: block;
	}
	main .section .service-row__body p,
	.service-row__body p {
		margin: 0;
		color: rgba(255, 253, 248, .86);
		text-align: inherit;
		hyphens: none;
		max-width: 42ch;
		font-size: var(--step-0);
		line-height: 1.6;
	}
	.service-row__more,
	main .section .service-row__more {
		display: inline-flex;
		align-items: center;
		gap: .85rem;
		margin-top: .55rem;
		font-family: var(--body);
		font-weight: 600;
		font-size: var(--step--1);
		letter-spacing: .02em;
		color: var(--brass);
		text-decoration: none;
		text-underline-offset: 3px;
	}
	.service-row__more::before {
		content: "";
		width: 2.1rem;
		height: 1px;
		background: var(--brass);
		flex: none;
	}
	.service-row__more:hover,
	main .section .service-row__more:hover {
		color: var(--white);
	}
	.service-row__more:hover::before {
		background: var(--white);
	}
	.service-row__more:focus-visible {
		outline: 3px solid var(--brass);
		outline-offset: 4px;
	}

	@media (max-width: 720px) {
		.service-row,
		.service-row--flip {
			grid-template-columns: 1fr;
			border-radius: 2rem;
			min-height: 0;
		}
		.service-row__media,
		.service-row--flip .service-row__media {
			order: 0;
			min-height: 200px;
			aspect-ratio: 16 / 10;
		}
		.service-row__body,
		.service-row--flip .service-row__body {
			text-align: left;
			align-items: flex-start;
		}
		.service-row--flip .service-row__body::before,
		.service-row__body::before {
			inset: auto -18% -38% auto;
			transform: none;
		}
	}

/* ============================================================================
	AREAS WE SERVE (service / location split)
	========================================================================== */
	.areas-serve {
		display: grid;
		grid-template-columns: minmax(15rem, 0.34fr) 1fr;
		border: 1px solid var(--paper-line);
		border-radius: 8px;
		overflow: hidden;
		background: var(--white);
		margin-top: 0.5rem;
	}
	.areas-serve__nav {
		background: var(--white);
		padding: 1.6rem 1.5rem 1.2rem;
		border-right: 1px solid var(--paper-line);
	}
	.areas-serve__heading,
	main .section .areas-serve__heading {
		font-family: var(--body);
		font-weight: 700;
		font-size: var(--step-2);
		color: var(--eucalypt);
		letter-spacing: -0.01em;
		margin: 0 0 1.1rem;
		padding: 0;
		border: 0;
		display: block;
		text-align: left;
	}
	.areas-serve__list,
	main .section .areas-serve__list {
		list-style: none;
		margin: 0;
		padding: 0;
	}
	.areas-serve__list > li,
	main .section .areas-serve__list > li {
		margin: 0;
		padding: 0;
		position: static;
	}
	.areas-serve__list > li::before,
	main .section .areas-serve__list > li::before {
		content: none;
	}
	.areas-serve__tab {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.8rem;
		width: 100%;
		background: none;
		border: 0;
		border-bottom: 1px solid var(--paper-line);
		border-radius: 0;
		padding: 0.85rem 0.15rem;
		font-family: var(--body);
		font-size: var(--step-0);
		font-weight: 500;
		color: var(--ink);
		text-align: left;
		cursor: pointer;
		box-shadow: none;
		transform: none;
	}
	.areas-serve__tab::after {
		content: "";
		flex: none;
		width: 0.42rem;
		height: 0.42rem;
		border-right: 2px solid var(--sage);
		border-bottom: 2px solid var(--sage);
		transform: rotate(-45deg);
	}
	.areas-serve__tab:hover {
		color: var(--eucalypt);
		background: none;
		transform: none;
	}
	.areas-serve__tab.is-active {
		color: var(--brass);
		font-weight: 700;
	}
	.areas-serve__tab.is-active::after {
		border-color: var(--brass);
	}
	.areas-serve__tab:focus-visible {
		outline: 3px solid var(--brass);
		outline-offset: 2px;
	}
	.areas-serve__pane {
		background: var(--sage-tint);
		padding: 1.7rem 1.8rem 2rem;
	}
	.areas-serve.is-enhanced .areas-serve__panel {
		display: none;
	}
	.areas-serve.is-enhanced .areas-serve__panel.is-active {
		display: block;
	}
	.areas-serve__intro,
	main .section .areas-serve__intro {
		color: var(--eucalypt);
		font-size: var(--step-0);
		line-height: 1.55;
		margin: 0 0 1.1rem;
		text-align: left;
		hyphens: none;
		max-width: none;
	}
	.areas-serve__banner,
	main .section .areas-serve__banner {
		background: var(--ink);
		color: var(--white);
		text-align: center;
		font-family: var(--body);
		font-weight: 600;
		font-size: var(--step--1);
		letter-spacing: 0.02em;
		padding: 0.7rem 1.2rem;
		border-radius: 999px;
		margin: 0 0 1.5rem;
	}
	.areas-serve__grid,
	main .section .areas-serve__grid {
		list-style: none;
		margin: 0;
		padding: 0;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1.15rem 1.4rem;
	}
	.areas-serve__grid > li,
	main .section .areas-serve__grid > li {
		margin: 0;
		padding: 0;
		position: static;
	}
	.areas-serve__grid > li::before,
	main .section .areas-serve__grid > li::before {
		content: none;
	}
	.areas-serve__place-link,
	main .section .areas-serve__place-link {
		display: grid;
		grid-template-columns: 0.85rem 1fr;
		grid-template-rows: auto auto;
		column-gap: 0.35rem;
		text-decoration: none;
		color: inherit;
		text-underline-offset: unset;
	}
	.areas-serve__place-link::before {
		content: "–";
		grid-row: 1 / span 2;
		color: var(--ink-soft);
		line-height: 1.3;
		padding-top: 0.15em;
	}
	.areas-serve__svc {
		grid-column: 2;
		font-size: 0.78rem;
		color: var(--ink-soft);
		line-height: 1.3;
	}
	.areas-serve__place {
		grid-column: 2;
		font-weight: 700;
		font-size: var(--step-0);
		color: var(--ink);
		line-height: 1.3;
	}
	.areas-serve__place-link:hover .areas-serve__place,
	main .section .areas-serve__place-link:hover {
		color: var(--brass);
		text-decoration: none;
	}
	.areas-serve__empty,
	main .section .areas-serve__empty {
		color: var(--ink-soft);
		margin: 0;
		text-align: left;
	}

	@media (max-width: 900px) {
		.areas-serve {
			grid-template-columns: 1fr;
		}
		.areas-serve__nav {
			border-right: 0;
			border-bottom: 1px solid var(--paper-line);
			padding-bottom: 0.4rem;
		}
		.areas-serve__list {
			display: flex;
			gap: 0;
			overflow-x: auto;
		}
		.areas-serve__list > li {
			flex: none;
		}
		.areas-serve__tab {
			border-bottom: 0;
			border-right: 1px solid var(--paper-line);
			padding: 0.7rem 1rem;
			white-space: nowrap;
		}
		.areas-serve__grid {
			grid-template-columns: repeat(2, 1fr);
		}
	}
	@media (max-width: 560px) {
		.areas-serve__grid {
			grid-template-columns: 1fr;
		}
		.areas-serve__pane {
			padding: 1.2rem 1.1rem 1.5rem;
		}
	}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
    body { font-size: 17px; }
    main { padding: 20px 12px 60px; }
    main .section { padding: 32px 24px; border-radius: 6px; }
    main .section h3 { font-size: 1.6rem; }
    main .section p, main .section li { text-align: left; hyphens: none; }
}


/* ------- Form ---- */
/* Container and Layout Styling */
.contact-form, 
form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-family: inherit;
}

/* Form Group Spacing */
.form-group, 
form > div {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}

/* Label Styling */
label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.4rem;
}

/* Input and Textarea Base Styles */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #333333;
  background-color: #f8f9fa;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  box-sizing: border-box;
  transition: all 0.25s ease-in-out;
  outline: none;
}

/* Interactive States (Hover & Focus) */
input[type="text"]:hover,
input[type="email"]:hover,
textarea:hover {
  border-color: #cbd5e1;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  background-color: #ffffff;
  border-color: #a88d58; /* Matching your theme's warm golden accent */
  box-shadow: 0 0 0 3px rgba(168, 141, 88, 0.2);
}

/* Textarea Customization */
textarea {
  min-height: 140px;
  resize: vertical;
}

/* Honeypot / Anti-Spam Hidden Field */
input[name="honeypot"],
.hidden-field {
  display: none !important;
}

/* Submit Button Styling */
button[type="submit"],
input[type="submit"] {
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #a88d58; /* Primary brand gold shade */
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

button[type="submit"]:hover,
input[type="submit"]:hover {
  background-color: #927948;
}

button[type="submit"]:active,
input[type="submit"]:active {
  transform: translateY(1px);
}


div.service-row a {
  color: #B08A4F;
}

div.service-row a:hover {
  color: #fff;
}

div.service-row h3 {
	color: #fff !important;
}

/* ============================================================================
	HOME PAGE
	The marketing home is a full-bleed landing layout, not a white article card.
	`main .section` (padding, navy headings, gold ticks) must not wrap it.
	========================================================================== */
html:has(.home),
body:has(.home),
main:has(.home) {
	padding: 0;
	max-width: 100%;
	overflow-x: clip;
}
.home {
	font-family: "Public Sans", var(--body);
	color: var(--ink);
	overflow-x: clip;
}
.home .wrap {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: 1.5rem;
	box-sizing: border-box;
}
.home,
.hero,
.hero__grid,
.hero__grid > *,
.home-block,
.instruments,
.instrument,
.process,
.process__step,
.assure,
.assure .wrap {
	min-width: 0;
	max-width: 100%;
}
.home .section__head {
	min-width: 0;
	max-width: min(60ch, calc(100vw - 3rem));
}
.home h1,
.home h2,
.home h3,
.home h4 {
	font-family: "Fraunces", var(--display);
	color: var(--ink);
	overflow-wrap: break-word;
}
.hero {
	overflow: visible;
	background:
		radial-gradient(ellipse 70% 55% at 8% -10%, color-mix(in srgb, var(--sage-tint) 85%, transparent), transparent 58%),
		radial-gradient(ellipse 45% 40% at 100% 10%, color-mix(in srgb, var(--brass) 14%, transparent), transparent 52%);
}
.hero h1,
.hero__lead,
.hero__note,
.home h2,
.home .section__head p,
.deed__title,
.deed__sub {
	width: 100%;
	max-width: min(100%, calc(100vw - 3rem));
}
.hero h1 {
	font-size: var(--step-4) !important;
	font-weight: 400;
	letter-spacing: -.015em;
}
.hero__line {
	display: block;
}
@media (min-width: 901px) {
	.hero h1 {
		max-width: 12em;
	}
}
.home .instrument p,
.home .process__step p,
.home .service-row__body p,
.home .assure p,
.home .cta-band p {
	max-width: min(46ch, calc(100vw - 3rem));
}
.hero__note {
	margin-top: 1.25rem;
}
.hero__note::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--brass);
	flex: none;
}
.home-block {
	padding-block: clamp(3.5rem, 7vw, 6rem);
}
.home-block--paper {
	background: var(--paper-2);
	border-block: 1px solid var(--paper-line);
}
.home .instrument h3 {
	font-family: "Fraunces", var(--display);
	font-size: var(--step-1);
	font-weight: 400;
	border: 0;
	padding: 0;
	display: block;
	color: var(--ink);
}
.home .instrument__link {
	color: var(--eucalypt);
}
.home-services__foot {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	justify-content: center;
	margin-top: 2.6rem;
}
.home .cta-band .btn--ghost {
	color: var(--ink);
}
@media (max-width: 720px) {
	main:has(.home) {
		padding: 0;
	}
	.hero h1 {
		font-size: 1.5rem !important;
		line-height: 1.2;
	}
	.home h2 {
		font-size: 1.55rem !important;
		line-height: 1.2;
		max-width: 20rem;
	}
	.hero__lead,
	.hero__note,
	.home .section__head p {
		max-width: 20rem;
	}
	.hero__actions .btn {
		flex: 1 1 100%;
		justify-content: center;
	}
	.deed {
		padding: 1.5rem 1.2rem 1.7rem;
		overflow: hidden;
	}
	.deed__sub {
		letter-spacing: .06em;
		font-size: .6rem;
		white-space: normal;
	}
	.home .service-row__body p {
		max-width: none;
	}
}