/* ───────────────────────────────────────────────────────────────────
 * Design tokens
 * ─────────────────────────────────────────────────────────────────── */
:root {
	/* Palette — warm cream + brand green + gold accent */
	--mod-bg:           #faf6ee;
	--mod-surface:      #ffffff;
	--mod-surface-2:    #f4ede0;
	--mod-ink:          #1a2920;
	--mod-ink-muted:    #555b56;
	--mod-ink-soft:     #7a8079;
	--mod-primary:      #2d6a4f;
	--mod-primary-strong:#1a3a2c;
	--mod-primary-soft: #d6e4dc;
	--mod-accent:       #b08948;
	--mod-accent-soft:  #ead7b3;
	--mod-line:         #e2dccc;
	--mod-line-soft:    #ece6d4;
	--mod-danger:       #b04a3b;
	--mod-shadow-card:  0 6px 24px -8px rgba(20, 16, 8, .12);
	--mod-shadow-card-hover: 0 14px 38px -10px rgba(20, 16, 8, .22);
	--mod-shadow-nav:   0 2px 14px -8px rgba(20, 16, 8, .25);

	/* Type */
	--mod-font-display: "Playfair Display", Georgia, "Times New Roman", serif;
	--mod-font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--mod-fs-body:      17px;
	--mod-lh-body:      1.65;
	--mod-fs-small:     14px;

	/* Spacing — clamps grow with viewport */
	--mod-section-y:    clamp(72px, 9vw, 140px);
	--mod-row-y:        clamp(48px, 5vw, 80px);
	--mod-gap:          clamp(20px, 3vw, 40px);

	/* Radii */
	--mod-radius-sm:    6px;
	--mod-radius:       10px;
	--mod-radius-lg:    18px;
}

/* ───────────────────────────────────────────────────────────────────
 * Base
 * ─────────────────────────────────────────────────────────────────── */
body,
body.et_pb_pagebuilder_layout {
	background: var(--mod-bg);
	color: var(--mod-ink);
	font-family: var(--mod-font-body);
	font-size: var(--mod-fs-body);
	line-height: var(--mod-lh-body);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Shared component label used by Content, Projects, Legacy, and Launch modules. */
.mod-eyebrow {
	display: inline-block;
	font-family: var(--mod-font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--mod-primary);
	margin-bottom: 10px;
}

#page-container,
#main-content,
.et_pb_section {
	background-color: transparent;
}

/* ───────────────────────────────────────────────────────────────────
 * Typography — headings unify on Playfair Display
 * ─────────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6,
.et_pb_module h1, .et_pb_module h2, .et_pb_module h3,
.et_pb_module h4, .et_pb_module h5, .et_pb_module h6,
.et_pb_slide_title,
.et_pb_slide_description h1, .et_pb_slide_description h2 {
	font-family: var(--mod-font-display) !important;
	color: var(--mod-ink);
	letter-spacing: -0.005em;
	line-height: 1.18;
	font-weight: 600;
}
h1, .et_pb_slide_description h1 { font-size: clamp(32px, 5vw, 72px); font-weight: 600; overflow-wrap: break-word; hyphens: manual; }
h2, .et_pb_slide_description h2 { font-size: clamp(30px, 3.4vw, 50px); }
h3 { font-size: clamp(24px, 2.4vw, 34px); }
h4 { font-size: clamp(20px, 1.6vw, 24px); }

p, li, dd, dt, blockquote {
	font-family: var(--mod-font-body);
}
p { color: var(--mod-ink-muted); }

a { color: var(--mod-primary); transition: color .15s ease; }
a:hover, a:focus-visible { color: var(--mod-primary-strong); }

/* ───────────────────────────────────────────────────────────────────
 * Header — sticky, shrinks on scroll, soft shadow
 * ─────────────────────────────────────────────────────────────────── */
#main-header {
	/* Near-solid translucent cream. NO backdrop-filter: the blur re-composites on
	 * every scroll frame and was stalling the renderer (paint never settled, hero
	 * showed its cream under-layer). A solid-ish bg is just as clean and cheap. */
	background-color: rgba(255, 253, 247, .97);
	box-shadow: var(--mod-shadow-nav);
	transition: background-color .25s ease, box-shadow .25s ease, padding .2s ease;
}
.et_fixed_nav #main-header.et-fixed-header {
	background-color: rgba(255, 253, 247, .98);
}

#top-menu li a {
	font-family: var(--mod-font-body);
	font-weight: 500;
	letter-spacing: .01em;
	color: var(--mod-ink) !important;
	transition: color .15s ease;
}
#top-menu li a:hover,
#top-menu li.current-menu-item > a {
	color: var(--mod-primary) !important;
	opacity: 1;
}

/* Underline-from-center hover for menu items */
#top-menu li > a { position: relative; }
#top-menu li > a::after {
	content: "";
	position: absolute;
	left: 50%; right: 50%;
	bottom: -4px;
	height: 2px;
	background: var(--mod-primary);
	transition: left .2s ease, right .2s ease;
}
#top-menu li:hover > a::after,
#top-menu li.current-menu-item > a::after { left: 10%; right: 10%; }

/* ───────────────────────────────────────────────────────────────────
 * Buttons — one consolidated style, two variants (primary/ghost)
 * ─────────────────────────────────────────────────────────────────── */
.et_pb_button,
.et_pb_button:visited,
input[type="submit"],
.wp-block-button__link {
	font-family: var(--mod-font-body) !important;
	font-weight: 600 !important;
	font-size: 15px !important;
	letter-spacing: .04em !important;
	text-transform: uppercase !important;
	padding: 14px 30px !important;
	border-radius: 999px !important;
	border: 2px solid var(--mod-primary) !important;
	background: var(--mod-primary) !important;
	color: #fff !important;
	box-shadow: 0 4px 18px -6px rgba(45, 106, 79, .55) !important;
	transition: transform .15s ease, background .15s ease, box-shadow .2s ease, color .15s ease, border-color .15s ease !important;
	text-decoration: none !important;
}
.et_pb_button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
	background: var(--mod-primary-strong) !important;
	border-color: var(--mod-primary-strong) !important;
	transform: translateY(-1px);
	box-shadow: 0 8px 26px -8px rgba(26, 58, 44, .55) !important;
	color: #fff !important;
	padding: 14px 30px !important;
}
.et_pb_button::after,
.et_pb_button_inner { display: none !important; }

/* (Ghost button variant deleted 2026-07 — no markup on the site ever used
 * .mod-btn-ghost; it was speculative API from the original modernize pass.) */

/* ───────────────────────────────────────────────────────────────────
 * Section spacing — establish vertical rhythm regardless of module
 * Smaller defaults than Divi's; we'll add big breath only to "regular"
 * content sections (the slider/fullwidth still owns its own viewport).
 * ─────────────────────────────────────────────────────────────────── */
.et_pb_section.et_section_regular {
	padding-top: clamp(56px, 6vw, 96px);
	padding-bottom: clamp(56px, 6vw, 96px);
}
.et_pb_section.et_pb_fullwidth_section { padding-top: 0; padding-bottom: 0; }
.et_pb_section .et_pb_row { padding-top: 0; padding-bottom: 0; }
.et_pb_section + .et_pb_section { margin-top: 0; }

/* Cards rendered via code modules ("Events" / "My Kid's Lunch" blurbs on home) */
.et_pb_blurb {
	background: var(--mod-surface);
	border-radius: var(--mod-radius);
	padding: clamp(28px, 3vw, 44px);
	box-shadow: var(--mod-shadow-card);
	transition: transform .25s ease, box-shadow .3s ease;
	height: 100%;
}
.et_pb_blurb:hover {
	transform: translateY(-4px);
	box-shadow: var(--mod-shadow-card-hover);
}
/* Fixed logo slot (design pass 2026-07): with max-only sizing each logo's intrinsic
 * aspect set the slot height, so the two Home card titles sat on different
 * baselines. A constant-height flex slot centers any logo and aligns the titles. */
.et_pb_blurb .et_pb_main_blurb_image {
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.et_pb_blurb .et_pb_main_blurb_image img {
	max-width: 150px !important;
	max-height: 110px !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
}
.et_pb_blurb h4,
.et_pb_blurb h3,
.et_pb_blurb h2 { /* h2 since 2026-07: the Home blurb titles were promoted from h4 (skipped level) */
	font-size: 24px !important;
	margin-bottom: 8px !important;
}

/* ───────────────────────────────────────────────────────────────────
 * Legacy code-module dumps — restore the Divi-4 layout utilities the
 * pasted markup depends on. Divi 5 ships .et_pb_text_align_center only
 * for native .et_pb_module elements, and D4's float grid is gone, so
 * legacy rows rendered as misaligned, left-aligned stacks.
 * ─────────────────────────────────────────────────────────────────── */
#main-content .et_pb_code_inner .et_pb_text_align_center { text-align: center; }

/* Side-by-side legacy columns → flex: equal-height cards, wraps to one
 * column on phones. (Native D5 rows use .et_block_row — unaffected.) */
#main-content .et_pb_code_inner .et_pb_row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: clamp(20px, 3vw, 36px);
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}
#main-content .et_pb_code_inner .et_pb_row .et_pb_column {
	flex: 1 1 320px;
	min-width: 0;
	margin: 0;
}
#main-content .et_pb_code_inner .et_pb_column_empty { display: none; }

/* ───────────────────────────────────────────────────────────────────
 * Hero — Divi slider treatment
 *   - dark overlay so hero text pops
 *   - constrain the giant logo "slide image"
 *   - tighter title scale
 * ─────────────────────────────────────────────────────────────────── */
.et_pb_slider .et_pb_slide,
.et_pb_fullwidth_header { position: relative; overflow: hidden; }

/* The hero's decorative gold glow (::after, 600px wide) escaped the slide and
 * added ~113px of horizontal pan on phones — the only real overflow on the
 * site (audit 2026-07). overflow:hidden above contains it; this is the
 * belt-and-braces so no future decoration reintroduces sideways scroll.
 * ('clip' not 'hidden': it can't become a scroll container, and position:fixed
 * children like the sticky header are unaffected.) */
html, body { overflow-x: clip; }

/* (The parallax stretch-to-fill block was removed 2026-06. NOTE: "no other section
   uses .et_parallax_bg" was wrong — the Home promo band's legacy code module ships an
   et_pb_section_parallax whose layer painted denver_blur_2.jpg as a raw blue smear;
   it is killed together with the slider's layer below.) */

/* Hero — pure gradient surface. (History: Divi's "CSS parallax" fixed-attachment
 * layer defeated every overlay/opacity attempt; the photo was then baked into the
 * slide background; finally removed outright in the 2026-06 review since it was
 * ~97% hidden yet cost a 152KB fetchpriority-high download on the LCP path.) */
.et_pb_slider .et_pb_slide {
	background:
		linear-gradient(140deg, rgba(18, 32, 24, .98) 0%, rgba(26, 58, 44, .94) 52%, rgba(36, 59, 48, .96) 100%),
		#14241b !important;
}
/* Kill Divi's separate parallax image layers — slider AND legacy section parallax
 * (the Home promo band, same treatment as the hero: drop the photo, keep the
 * designed surface). Null the background-image too: Chrome still FETCHES
 * backgrounds on display:none elements, so without this the inline styles would
 * download the JPGs anyway. */
.et_pb_slider .et_pb_slide .et_parallax_bg,
#main-content .et_pb_section_parallax .et_parallax_bg {
	display: none !important;
	background-image: none !important;
}

/* Strong, near-uniform dark overlay ABOVE the image, BELOW the text. */
.et_pb_slider .et_pb_slide::before,
.et_pb_fullwidth_header::before {
	content: "";
	position: absolute; inset: 0;
	background:
		radial-gradient(120% 120% at 50% 30%, rgba(18, 32, 24, .58) 0%, rgba(18, 32, 24, .80) 100%),
		linear-gradient(180deg, rgba(18, 32, 24, .72) 0%, rgba(18, 32, 24, .60) 45%, rgba(18, 32, 24, .88) 100%);
	z-index: 1;
	pointer-events: none;
}

/* Subtle warm glow at the bottom — anchors the eye toward the CTA area.
 * (Design pass 2026-07: widened + softened from 600px@.35 — the old tight hot
 * ellipse read as a stain behind the button; this is ambient warmth.) */
.et_pb_slider .et_pb_slide::after {
	content: "";
	position: absolute;
	left: 50%; bottom: -160px;
	transform: translateX(-50%);
	width: 880px; height: 300px;
	background: radial-gradient(ellipse at center, rgba(176, 137, 72, .18) 0%, transparent 65%);
	z-index: 1;
	pointer-events: none;
}
.et_pb_slider .et_pb_slide > .et_pb_container,
.et_pb_slider .et_pb_slide .et_pb_slide_description,
.et_pb_fullwidth_header .et_pb_fullwidth_header_container { position: relative; z-index: 2; }

/* Remove the redundant logo image in the hero slide — the site logo already sits
   in the header right above it, and the "Cater With Passion" title carries the hero. */
.et_pb_slider .et_pb_slide_image { display: none !important; }

.et_pb_slide_description {
	text-align: center;
	max-width: 920px;
	margin: 0 auto;
	/* Tightened hero band — less dark-green dead space top & bottom. */
	padding-block: clamp(32px, 4vw, 56px);
}
.et_pb_slide_description h1,
.et_pb_slide_description h2 {
	color: #fff !important;
	text-shadow: 0 2px 24px rgba(0,0,0,.35);
	font-size: clamp(32px, 5.6vw, 84px) !important;
	margin-top: 6px !important;
	margin-bottom: 16px !important;
	overflow-wrap: break-word;
	hyphens: manual;
}
.et_pb_slide_description h1 a,
.et_pb_slide_description h2 a {
	color: #fff !important;
	background-image: linear-gradient(transparent 65%, rgba(176, 137, 72, .55) 65%);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 0% 100%;
	transition: background-size .35s ease;
	text-decoration: none !important;
}
.et_pb_slide_description h1 a:hover,
.et_pb_slide_description h2 a:hover { background-size: 100% 100%; }

.et_pb_slide_content,
.et_pb_slide_description p {
	color: rgba(255,255,255,.94) !important;
	/* caption-weight lede (design pass 2026-07): one step down + tighter measure
	   turns the 7-line hero slab into a balanced 5-6 line caption */
	font-size: 18px;
	line-height: 1.7;
	max-width: 600px;
	margin-left: auto; margin-right: auto;
	font-family: var(--mod-font-body);
	text-wrap: pretty;
}
.et_pb_slide_description h1 { text-wrap: balance; }

/* Slider next/prev arrows and dots — tone down */
.et_pb_slider .et-pb-controllers a { background: rgba(255,255,255,.6) !important; }
.et_pb_slider .et-pb-controllers .et-pb-active-control { background: var(--mod-accent) !important; }

/* ───────────────────────────────────────────────────────────────────
 * Project portfolio cards (Events page + About "Recent Projects")
 * ─────────────────────────────────────────────────────────────────── */
/* Lay the portfolio out as a 2-up gallery grid. Previously it rendered as a
 * single block column, stretching the 400px Divi thumbnails to ~870px (2.2x →
 * blurry). At ~2 columns each card image is ~520px, so the thumbnails read crisp
 * and four projects form a clean 2x2. */
.et_pb_portfolio,
.et_pb_portfolio_grid,
.et_pb_fullwidth_portfolio .et_pb_portfolio {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(18px, 2.4vw, 30px);
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 640px) {
	.et_pb_portfolio,
	.et_pb_portfolio_grid,
	.et_pb_fullwidth_portfolio .et_pb_portfolio { grid-template-columns: 1fr !important; }
}
.et_pb_portfolio_item {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
}
.et_pb_portfolio_item,
.et_pb_portfolio_grid .et_pb_portfolio_item {
	background: var(--mod-surface);
	border-radius: var(--mod-radius);
	overflow: hidden;
	box-shadow: var(--mod-shadow-card);
	transition: transform .25s ease, box-shadow .3s ease;
}
.et_pb_portfolio_item:hover {
	transform: translateY(-4px);
	box-shadow: var(--mod-shadow-card-hover);
}
.et_pb_portfolio_item .et_portfolio_image {
	display: block;
	overflow: hidden;
	margin: 0;
}
.et_pb_portfolio_item .et_portfolio_image img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .3s ease;
	/* one unifying grade for the mixed-era archival photos; hover restores color */
	filter: saturate(.86) contrast(1.05) brightness(1.01) sepia(.06);
}
.et_pb_portfolio_item:hover .et_portfolio_image img {
	transform: scale(1.05);
	filter: saturate(1) contrast(1.04);
}

.et_pb_portfolio_item h2,
.et_pb_portfolio_item h3 {
	padding: 22px 24px 24px;
	margin: 0;
	font-size: 22px !important;
}
/* Each archive holds exactly one project, so the meta line just echoed the card's
 * own title ("Cuisine" over "Cuisine") — dropped (design pass 2026-07). */
.et_pb_portfolio_item .post-meta { display: none; }
.et_pb_portfolio_item .et_portfolio_more_link {
	padding: 0 24px 22px;
	color: var(--mod-ink-soft);
	font-size: 14px;
}
/* De-Divi the hover overlay: brand veil + gold zoom glyph instead of mint-on-gray */
.et_pb_portfolio_item .et_overlay {
	background: rgba(26, 58, 44, .38);
	border: 0;
}
.et_pb_portfolio_item .et_overlay::before { color: var(--mod-accent-soft) !important; }

/* ───────────────────────────────────────────────────────────────────
 * Body text / paragraphs inside Divi text modules
 * ─────────────────────────────────────────────────────────────────── */
.et_pb_text p,
.et_pb_blurb_description p,
.et_pb_promo_description p {
	font-size: 17px;
	line-height: 1.7;
	color: var(--mod-ink-muted);
}

/* Pretty bullets */
.et_pb_text ul li,
.et_pb_blurb_description ul li {
	list-style: none;
	position: relative;
	padding-left: 22px;
	margin-bottom: 6px;
}
.et_pb_text ul li::before,
.et_pb_blurb_description ul li::before {
	content: "•";
	color: var(--mod-accent);
	position: absolute;
	left: 4px;
	font-size: 18px;
	top: -2px;
}

/* (Divi contact-field form styles deleted 2026-07 — the booking form is retired,
 * mod-noforms stubs the shortcode, and no .et_pb_contact_field markup renders
 * anywhere on the site.) */

/* ───────────────────────────────────────────────────────────────────
 * Cards / blurbs — give them a unified surface treatment
 * ─────────────────────────────────────────────────────────────────── */
.et_pb_blurb_position_top .et_pb_main_blurb_image,
.et_pb_blurb_position_left .et_pb_main_blurb_image {
	margin-bottom: 16px;
}
.et_pb_blurb_container h4,
.et_pb_blurb_container h2 { margin-bottom: 6px; }

/* ───────────────────────────────────────────────────────────────────
 * Mod custom footer — opinionated 3-column with brand / NAP / links
 * (Replaces the default Divi widget area + footer-bottom)
 * ─────────────────────────────────────────────────────────────────── */
/* Hide Divi's ENTIRE footer shell, not just its inner pieces — the empty
 * <footer id="main-footer"> was a duplicate contentinfo landmark alongside
 * the real .mod-footer (launch audit 2026-07). */
#main-footer,
#footer-widgets,
#footer-bottom,
#main-footer .footer-widget,
#footer-info { display: none !important; }


/* Shared global-footer design from My Kid's Lunch, reviewed September 2026. */
.mod-footer {
	--mod-footer-red: #f4615e;
	--mod-footer-cream: #faf7f3;
	--mod-footer-muted: rgba(250,247,243,.82);
	background: #2a2520;
	color: var(--mod-footer-cream);
	padding: 56px 28px 40px;
	position: relative;
	font-family: var(--mod-font-body);
}
.mod-footer *, .mod-footer *::before, .mod-footer *::after { box-sizing: border-box; }
.mod-footer-inner { width: min(1280px, 100%); margin: 0 auto; }
.mod-footer a { color: var(--mod-footer-cream) !important; text-decoration: none; }
.mod-footer a:hover, .mod-footer a:focus-visible { color: var(--mod-footer-red) !important; }
.mod-footer a:focus-visible { outline: 3px solid var(--mod-footer-red); outline-offset: 3px; }
.mod-footer-toplinks {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px 24px;
	flex-wrap: wrap;
	margin: 0 0 12px;
}
.mod-footer .mod-footer-toplinks a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: rgba(250,247,243,.72) !important;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 12px;
	font-weight: 700;
}
.mod-footer .mod-footer-toplinks a:hover,
.mod-footer .mod-footer-toplinks a:focus-visible { color: var(--mod-footer-red) !important; }
/* The reference's round icon row uses the verified phone/email for this site. */
.mod-footer-actions { display: flex; justify-content: center; gap: 14px; margin: 0 0 32px; }
.mod-footer-actions a {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1px solid rgba(250,247,243,.16);
	background: rgba(250,247,243,.08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.mod-footer .mod-footer-actions a:hover,
.mod-footer .mod-footer-actions a:focus-visible {
	background: var(--mod-footer-red);
	border-color: var(--mod-footer-red);
	color: #2a2520 !important;
	transform: translateY(-2px);
}
.mod-footer-actions svg { width: 18px; height: 18px; display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mod-footer-grid {
	display: grid;
	grid-template-columns: minmax(150px,.8fr) minmax(180px,.95fr) minmax(270px,1.35fr) minmax(160px,1.05fr);
	align-items: start;
	gap: 28px;
	margin: 0;
	padding-top: 32px;
	border-top: 1px solid rgba(250,247,243,.1);
	text-align: center;
}
.mod-footer-grid > * {
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
}
.mod-footer .mod-footer-heading {
	margin: 0 0 6px;
	padding: 0;
	color: var(--mod-footer-red) !important;
	font-family: var(--mod-font-body) !important;
	font-size: 13px !important;
	font-weight: 700;
	letter-spacing: .12em;
	line-height: 1.35;
	text-transform: uppercase;
}
.mod-footer p, .mod-footer li {
	margin: 0;
	padding: 0;
	color: var(--mod-footer-muted);
	font-size: 14px;
	line-height: 1.6;
}
.mod-footer p { max-width: 34ch; }
.mod-footer .mod-tagline { font-style: italic; }
.mod-footer-contact a { overflow-wrap: anywhere; }
.mod-footer-contact p a { display: inline-flex; align-items: center; min-height: 44px; max-width: 100%; }
.mod-footer .mod-footer-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 96px;
	min-height: 44px;
	margin-top: 4px;
	padding: 9px 20px;
	border: 1px solid rgba(250,247,243,.2);
	border-radius: 7px;
	background: rgba(250,247,243,.08);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.mod-footer .mod-footer-button:hover,
.mod-footer .mod-footer-button:focus-visible { background: var(--mod-footer-red); border-color: var(--mod-footer-red); color: #2a2520 !important; }
.mod-footer-grid .mod-footer-family { align-items: flex-start; text-align: left; scroll-margin-top: 7rem; }
.mod-footer .mod-footer-family > .mod-footer-heading { width: 100%; margin-bottom: 10px; color: var(--mod-footer-cream) !important; text-align: left; }
.mod-footer-brands-list { display: flex; flex-direction: column; align-items: stretch; gap: 10px; width: min(100%, 300px); }
.mod-footer a.rmc-brand {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	width: 100%;
	min-width: 0;
	min-height: 44px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	text-align: left;
	transition: transform .2s ease;
}
.mod-footer a.rmc-brand:hover, .mod-footer a.rmc-brand:focus-visible { transform: translateX(3px); }
.mod-footer .rmc-brand-chip {
	width: 58px;
	height: 44px;
	flex: 0 0 58px;
	padding: 6px;
	border-radius: 7px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mod-footer .rmc-brand-chip img { display: block; width: auto; max-width: 100%; height: auto; max-height: 100%; }
.mod-footer .rmc-brand-chip--text { color: #1f1c1a; font-size: 14px; font-weight: 700; letter-spacing: .02em; }
.mod-footer .rmc-brand-name { min-width: 0; color: inherit; font-size: 15px; font-weight: 700; line-height: 1.35; overflow-wrap: break-word; }
.mod-footer ul { list-style: none; padding: 0; margin: 0; }
.mod-footer-links li a { display: inline-flex; align-items: center; min-height: 44px; padding: 4px 0; }
.mod-footer-bottom { margin: 32px auto 0; padding-top: 22px; border-top: 1px solid rgba(250,247,243,.1); text-align: center; color: var(--mod-footer-muted); font-size: 12px; line-height: 1.6; }
@media (max-width: 1080px) {
	.mod-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 36px; }
	.mod-footer-grid .mod-footer-family { align-items: center; }
	.mod-footer .mod-footer-family > .mod-footer-heading { text-align: center; }
}
@media (max-width: 680px) {
	.mod-footer { padding: 42px 20px 32px; }
	.mod-footer-toplinks { gap: 4px 18px; }
	.mod-footer-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
}
@media (prefers-reduced-motion: reduce) {
	.mod-footer a { transition: none; }
	.mod-footer a:hover, .mod-footer a:focus-visible,
	.mod-footer .mod-footer-actions a:hover, .mod-footer .mod-footer-actions a:focus-visible,
	.mod-footer a.rmc-brand:hover, .mod-footer a.rmc-brand:focus-visible { transform: none; }
}

/* ───────────────────────────────────────────────────────────────────
 * Mobile menu — overlay style with big, finger-friendly targets
 * ─────────────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
	#main-header { padding-top: 14px !important; padding-bottom: 14px !important; }
	#et_mobile_nav_menu .mobile_menu_bar::before {
		color: var(--mod-primary) !important;
		font-size: 28px !important;
	}
	.et_mobile_menu {
		background: var(--mod-ink) !important;
		color: rgba(255,253,247,.95) !important;
		border-top: 3px solid var(--mod-primary) !important;
		padding: 18px 8vw 28px !important;
		box-shadow: 0 20px 40px -16px rgba(0,0,0,.45) !important;
	}
	.et_mobile_menu li a {
		color: rgba(255,253,247,.92) !important;
		font-family: var(--mod-font-display) !important;
		font-size: 22px !important;
		font-weight: 500 !important;
		padding: 14px 4px !important;
		border-bottom: 1px solid rgba(255,253,247,.10) !important;
		opacity: 1 !important;
		letter-spacing: .005em;
	}
	.et_mobile_menu li:last-child a { border-bottom: 0 !important; }
	.et_mobile_menu li a:hover,
	.et_mobile_menu li.current-menu-item > a {
		background: transparent !important;
		color: var(--mod-accent-soft) !important;
	}
	.et_mobile_menu li.current-menu-item > a {
		border-left: 3px solid var(--mod-accent) !important;
		padding-left: 12px !important;
	}
}

/* (The floating "Get a Quote" pill CSS — including its pulse keyframes and the
   body.mod-prefooter-near retire rule — was deleted 2026-06: nothing renders the
   pill on this no-bookings legacy site, and its mod-ux observer is gone too.) */

/* ───────────────────────────────────────────────────────────────────
 * Pre-footer CTA strip — full-width "Plan your event" band
 * Hidden on Contact page (already there) and on 404
 * ─────────────────────────────────────────────────────────────────── */
.mod-prefooter {
	/* solid fallback FIRST so the white text never lands on cream if the gradient
	   fails to paint (the same failure mode that broke the hero) */
	background-color: var(--mod-primary-strong);
	background-image: linear-gradient(95deg, var(--mod-primary-strong) 0%, var(--mod-primary) 100%);
	color: #fff;
	padding: clamp(48px, 6vw, 88px) 6vw;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.mod-prefooter::before {
	content: "";
	position: absolute;
	right: -120px; top: -80px;
	width: 360px; height: 360px;
	background: radial-gradient(circle, rgba(234, 215, 179, .25) 0%, transparent 70%);
	pointer-events: none;
}
.mod-prefooter::after {
	content: "";
	position: absolute;
	left: -140px; bottom: -100px;
	width: 360px; height: 360px;
	background: radial-gradient(circle, rgba(176, 137, 72, .18) 0%, transparent 70%);
	pointer-events: none;
}
.mod-prefooter-inner {
	position: relative;
	max-width: 880px;
	margin: 0 auto;
}
.mod-prefooter h2 {
	font-family: var(--mod-font-display);
	font-size: clamp(28px, 3.6vw, 48px) !important;
	color: #fff !important;
	margin: 0 0 10px !important;
	font-weight: 500;
	overflow-wrap: break-word;
}
.mod-prefooter p {
	color: rgba(255,253,247,.86) !important;
	font-size: 18px !important;
	margin: 0 auto 24px !important;
	max-width: 600px;
}
.mod-prefooter-actions {
	display: inline-flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}
.mod-prefooter-actions a {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: .04em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.mod-prefooter-actions .btn-primary {
	background: var(--mod-accent);
	color: var(--mod-ink);
	border: 2px solid var(--mod-accent);
}
.mod-prefooter-actions .btn-primary:hover {
	background: #c79b58;
	border-color: #c79b58;
	transform: translateY(-1px);
	color: var(--mod-ink);
}
/* ───────────────────────────────────────────────────────────────────
 * Section base surface. (The old alternating sand/white companion rule
 * was DELETED 2026-07 — its `#main-content > div` selector never matched
 * because Divi wraps content in an <article>; the visible alternation
 * comes from the legacy modules' own inline backgrounds.)
 * `body #page-container` prefix: Divi 5's et-critical-inline-css prints
 * AFTER this sheet, so equal-specificity rules were losing the cascade.
 * ─────────────────────────────────────────────────────────────────── */
body #page-container #main-content .et_pb_section.et_section_regular {
	background-color: var(--mod-bg);
}

/* (404 block deleted 2026-06 — it styled the default WP not-found article that
   mod-ux.php's custom 404 hides; mod-ux's .mod-404 is the single 404 system.) */
body.error404 #main-content { background: var(--mod-bg); }

/* ───────────────────────────────────────────────────────────────────
 * Misc polish
 * ─────────────────────────────────────────────────────────────────── */
hr { border-color: var(--mod-line); }

/* Legacy Divi-4 spacer hrs (inside code-module dumps) — D4 shipped them border-less
   and invisible; without that CSS they paint as ~50px bordered strips (seen framing
   the Home promo band). Collapse them: section rhythm owns vertical spacing now. */
#main-content hr.et_pb_space {
	border: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	background: transparent !important;
}

::selection { background: var(--mod-primary-soft); color: var(--mod-primary-strong); }

/* Focus visible — accessible keyboard ring */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
.et_pb_button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	/* #a2783d maintains at least 3:1 against both cream and dark-green surfaces. */
	outline: 3px solid #a2783d;
	outline-offset: 2px;
	border-radius: 4px;
}

/* The "↗" external-link marker is a bit visually loud against our new colors */
a.mod-ext::after { opacity: .55; }

/* Family cards already carry their own "→" arrow — the external "↗" marker on
 * top of it read as stray debris. One arrow is enough. */
a.mod-family-card.mod-ext::after { content: none; }

/* Image fade-in: keep working with .webp lazy too */
img { max-width: 100%; height: auto; }

/* Reduce noisy white space around the (heavy) Divi slider on small screens */
@media (max-width: 980px) {
	.et_pb_slider .et_pb_slide_description { padding-left: 6vw; padding-right: 6vw; }
}

/* ───────────────────────────────────────────────────────────────────
 * Mobile fit & finish (audit 2026-07) — phones get slightly smaller
 * hero copy, comfortable thumb targets, and wrap-safe display type.
 * ─────────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
	/* hero intro: one step down so the paragraph isn't a wall of text */
	.et_pb_slide_content,
	.et_pb_slide_description p { font-size: 17px; }
	/* long serif display words never bump the viewport edge */
	h1, h2 { overflow-wrap: break-word; hyphens: manual; }
	/* tighter breadcrumb strip so the page-title band stays the hero */
	.mod-crumbs { padding: 10px 5vw; }
}

/* (.school-catering/.mkl-block rule deleted 2026-06 — no-match selectors: the MKL
   page's code module uses .mkl-section wrappers, never these classes.) */

/* September 2026 component refinement. Screen-only to preserve the print layout.
 * Existing content, navigation, gallery controls and shared footer are retained. */
@media screen {
  #main-header { border-bottom: 1px solid var(--mod-line-soft); }
  #top-menu li a { font-size: 15px; }
  #top-menu li > a::after { bottom: 13px; }
  #mobile_menu { border-radius: 0 0 12px 12px; border-top-width: 2px; }
  #mobile_menu a[aria-current="page"],
  #mobile_menu .current-menu-item > a { background: var(--mod-surface-2) !important; color: var(--mod-primary-strong) !important; border-radius: 4px; }

  /* Actual archival photography, on its own surface. No parallax or text overlay. */
  .home #main-content .et_pb_slider .et_pb_slide { background: #193a2c !important; }
  .home #main-content .et_pb_slide::before { display: none; }
  .home #main-content .et_pb_slide::after {
    content: "";
    position: absolute;
    inset: 30px 4.5% 30px auto;
    width: 44%; height: auto;
    transform: none;
    border-radius: 8px;
    background: #294a3a url("/wp-content/uploads/2014/10/LEZ1749.webp") center / cover no-repeat;
    box-shadow: 0 0 0 1px rgba(255,255,255,.16);
    z-index: 1;
  }
  .home #main-content .et_pb_slide > .et_pb_container { width: 88%; max-width: 1280px; margin-inline: auto; }
  .home #main-content .et_pb_slide_description {
    width: 51%; max-width: none; margin: 0;
    padding: clamp(56px, 6vw, 88px) 44px clamp(56px, 6vw, 88px) 0;
    text-align: left;
  }
  .home #main-content .et_pb_slide_description h1 {
    font-size: clamp(42px, 5.2vw, 76px) !important;
    max-width: 11ch; line-height: 1.07; letter-spacing: -.035em;
    text-shadow: none; text-wrap: balance;
    margin-bottom: 22px !important;
  }
  .home #main-content .et_pb_slide_content,
  .home #main-content .et_pb_slide_description p {
    font-size: 17px; font-weight: 400; line-height: 1.75;
    max-width: 53ch; margin-left: 0; text-shadow: none;
  }
  .home #main-content .et_pb_more_button { margin-top: 24px; }

  /* Compact entry cards place the identity beside the destination. */
  .home #main-content .et_pb_section_1 .et_section_regular { padding-block: 48px; }
  .home #main-content .et_pb_blurb {
    padding: 30px; border: 1px solid var(--mod-line); box-shadow: none;
  }
  .home #main-content .et_pb_blurb_content {
    display: grid; grid-template-columns: 100px minmax(0, 1fr);
    column-gap: 26px; align-items: center; max-width: none; text-align: left;
  }
  .home #main-content .et_pb_main_blurb_image { grid-row: 1 / 3; height: auto; margin: 0; }
  .home #main-content .et_pb_main_blurb_image img { max-width: 100px !important; }
  .home #main-content .et_pb_blurb_content > h2 { align-self: end; margin: 0 0 8px !important; }
  .home #main-content .et_pb_blurb_content > p { grid-column: 2; align-self: start; font-size: 15px; margin: 0; padding: 0; }
  .home #main-content .et_pb_section_2 .et_pb_section_parallax { padding-block: 28px 48px; }
  .home #main-content .et_pb_section_2 .et_pb_space { display: none; }
  .home #main-content .et_pb_promo { padding: 38px clamp(24px, 4vw, 56px); }

  /* Predictable spacing and aligned actions through the existing component families. */
  #main-content :is(.mod-home-services,.mod-quote,.mod-trust,.mod-approach,.mod-menus) {
    padding-block: clamp(56px, 6vw, 88px);
  }
  #main-content :is(.mod-services-head,.mod-menus-head,.md-work-head) { margin-bottom: 32px; }
  #main-content :is(.mod-services-head h2,.mod-menus-head h2,.md-work-head h2,.md-features-head h2) { text-wrap: balance; }
  #main-content .mod-service-card { display: flex; flex-direction: column; padding: 30px; box-shadow: none; }
  #main-content .mod-service-card .mod-arrow { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--mod-line-soft); }
  #main-content .mod-service-card h3 { font-size: 26px !important; line-height: 1.2; }
  #main-content .mod-quote-inner { max-width: 840px; }
  #main-content .mod-quote-inner::before { font-size: 96px; margin-bottom: 0; opacity: .65; }
  #main-content .mod-quote blockquote p { font-size: clamp(23px, 2.25vw, 32px) !important; }
  #main-content .mod-approach-stats { border: 1px solid var(--mod-line); border-top: 3px solid var(--mod-accent); }

  /* About: quieter introductory surface and consistent readable card typography. */
  #main-content .md-about-hero { padding: clamp(54px, 6vw, 84px) 6vw; }
  #main-content .md-about-hero::before,
  #main-content .md-about-hero::after { display: none; }
  #main-content .md-about-hero .md-eyebrow { border-radius: 0; padding: 0; background: none; backdrop-filter: none; color: #ead7b3; }
  #main-content .md-about-hero h1 { font-size: clamp(38px, 4.6vw, 64px) !important; font-weight: 500 !important; letter-spacing: -.025em; text-shadow: none; }
  #main-content :is(.md-about-story,.md-about-features,.md-about-work) { padding: clamp(48px, 5vw, 72px) 6vw; }
  #main-content :is(.md-about-story-inner,.md-features-inner,.md-work-inner,.md-cta-inner) { max-width: 1180px; }
  #main-content :is(.md-story-text h2,.md-features-head h2,.md-work-head h2) { font-size: clamp(29px, 3vw, 40px) !important; line-height: 1.18; }
  #main-content :is(.md-story-text p,.md-features-head p,.md-feature p) { font-size: 16px !important; }
  #main-content .md-section-tag { background: none; padding: 0; border-radius: 0; font-size: 12px; letter-spacing: .13em; }
  #main-content .md-stat { box-shadow: none; border-radius: 8px; padding: 24px 18px; }
  #main-content .md-stat:hover,
  #main-content .md-feature:hover { transform: none; }
  #main-content .md-feature { text-align: left; padding: 28px; border-radius: 8px; }
  #main-content .md-feature h3 { font-size: 23px !important; line-height: 1.2; }
  #main-content .md-work-grid { gap: 24px; }
  #main-content .md-work-card { border: 1px solid var(--mod-line); border-radius: 8px; box-shadow: none; }
  #main-content .md-work-meta { position: relative; padding: 20px 48px 22px 20px; background: #fff; }
  #main-content .md-work-meta::after {
    content: ""; position: absolute; right: 20px; bottom: 27px;
    width: 9px; height: 9px; border-top: 1.5px solid var(--mod-primary); border-right: 1.5px solid var(--mod-primary); transform: rotate(45deg);
  }
  #main-content .md-work-card h3 { font-family: var(--mod-font-display) !important; font-size: 23px !important; font-weight: 500 !important; overflow-wrap: anywhere; }
  #main-content .md-work-cat { font-size: 11px; letter-spacing: .1em; margin-bottom: 8px; }
  #main-content .md-work-img { padding-top: 76%; }
  #main-content .md-cta-btn { box-shadow: none; letter-spacing: .05em; }

  /* Simple decorative line icons, replacing platform-dependent emoji artwork. */
  #main-content :is(.mod-service-icon,.md-feature-icon) {
    display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
    width: 48px; height: 48px; border-radius: 8px; border: 1px solid #cadbd1;
    background: #e8efe9; color: var(--mod-primary); font-size: 0; line-height: 1;
    margin-bottom: 22px;
  }
  #main-content :is(.mod-service-icon,.md-feature-icon)::before {
    content: ""; display: block; width: 26px; height: 26px;
    background: var(--mod-primary); mask: var(--mod-icon) center / contain no-repeat;
  }
  #main-content .mod-service-card:nth-child(1) { --mod-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5'%3E%3Ccircle cx='12' cy='14' r='7'/%3E%3Cpath d='m8 4 2-2h4l2 2-4 4-4-4Z'/%3E%3C/svg%3E"); }
  #main-content .mod-service-card:nth-child(2) { --mod-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5'%3E%3Cpath d='m3 2 6 1-1 7a3 3 0 0 1-6-1l1-7Zm1 10-1 7m-2 0 5 1m9-17 6-1 1 7a3 3 0 0 1-6 1l-1-7Zm5 9 1 7m-3 1 5-1'/%3E%3C/svg%3E"); }
  #main-content .mod-service-card:nth-child(3) { --mod-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M8 7V4h8v3M3 12h18M9 12v4h6v-4'/%3E%3C/svg%3E"); }
  #main-content .md-feature:nth-child(1) { --mod-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='7'/%3E%3Cpath d='M2 3v7m3-7v7M2 7h3M3.5 10v11M22 3v18m0-18q-4 6 0 10'/%3E%3C/svg%3E"); }
  #main-content .md-feature:nth-child(2) { --mod-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5'%3E%3Cpath d='M3 16a9 9 0 0 1 18 0H3Zm-2 3h22M12 7V4m-2 0h4'/%3E%3C/svg%3E"); }
  #main-content .md-feature:nth-child(3) { --mod-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5'%3E%3Cpath d='m8 14 1 8h6l1-8H8Zm4 0V7m0 4C2 12 2 3 7 4c3 0 5 4 5 7Zm0 0c10 1 10-8 5-7-3 0-5 4-5 7Zm0-4c-5-7 5-7 0 0Z'/%3E%3C/svg%3E"); }

  /* Archive notice aligns with the gallery, instead of occupying half a row. */
  #main-content .mod-archive-notice {
    width: 82%; max-width: 1180px; margin: 32px auto 0; padding: 22px 26px;
    justify-content: flex-start; gap: 24px; border: 1px solid var(--mod-line);
    border-left: 3px solid var(--mod-accent); border-radius: 6px; background: var(--mod-surface-2);
  }
  #main-content .mod-archive-notice span { font-size: 15px; }
  #main-content .et_pb_portfolio_item { border: 1px solid var(--mod-line); border-radius: 8px; box-shadow: none; }
  #main-content .et_pb_portfolio_item :is(h2,h3) { padding: 24px 28px; font-size: 28px !important; }
  #main-content .et_pb_portfolio_item :is(h2,h3) a { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
  #main-content .et_pb_portfolio_item :is(h2,h3) a::after {
    content: ""; flex: 0 0 9px; width: 9px; height: 9px;
    border-top: 1.5px solid var(--mod-primary); border-right: 1.5px solid var(--mod-primary); transform: rotate(45deg);
  }
  #main-content .mod-menus-grid { max-width: 1180px; }
  #main-content .mod-menu-card { border-top: 3px solid var(--mod-accent); border-radius: 8px; }
  #main-content .mod-menu-body h3 { font-size: 23px !important; }
  #main-content .mod-menu-body { display: flex; flex-direction: column; height: 100%; }
  #main-content .mod-menu-actions { margin-top: auto; padding-top: 20px; }
  #main-content .mod-family-card { border-radius: 8px; padding: 24px 26px; }
  #main-content .mod-family-arrow { align-self: flex-end; color: var(--mod-primary); }

  /* More breathing room around the actual project photographs. */
  .single-project #main-content .mod-project-hero { padding: clamp(36px, 5vw, 64px) 6vw; }
  .single-project #main-content .mod-project-title { font-size: clamp(40px, 5vw, 68px) !important; }
  .single-project #main-content .gallery { margin-top: 24px !important; gap: 18px; }
  .single-project #main-content .gallery .gallery-icon a { overflow: hidden; border-radius: 8px; }
  .single-project #main-content .mod-other-projects { padding-block: clamp(48px, 6vw, 80px); }

  #main-content :is(a.mod-service-card,.md-work-card,.et_pb_portfolio_item,.mod-family-card):hover {
    transform: translateY(-3px); box-shadow: 0 10px 28px -16px rgba(26,58,44,.32);
  }
  #main-content :is(.mod-service-card,.md-work-card,.mod-family-card):focus-visible,
  #main-content .et_pb_portfolio_item a:focus-visible {
    outline: 3px solid var(--mod-primary); outline-offset: 4px;
  }
}

@media screen and (min-width: 641px) and (max-width: 1000px) {
  #main-content :is(.mod-services-grid,.md-features-grid) { grid-template-columns: repeat(2,minmax(0,1fr)); }
  #main-content :is(.mod-services-grid,.md-features-grid) > :last-child { grid-column: 1 / -1; }
}
@media screen and (max-width: 800px) {
  .home #main-content .et_pb_slide_description { width: 100%; padding: 46px 0 34px; }
  .home #main-content .et_pb_slide_description h1 { max-width: 12ch; font-size: clamp(42px, 8vw, 60px) !important; }
  .home #main-content .et_pb_slide::after {
    position: relative; display: block; inset: auto; width: 88%; height: clamp(200px,48vw,340px);
    margin: 0 auto 32px; background-image: url("/wp-content/uploads/2014/10/LEZ1749-768x510.webp");
  }
}
@media screen and (max-width: 640px) {
  .home #main-content .et_pb_blurb { padding: 24px 20px; }
  .home #main-content .et_pb_blurb_content { grid-template-columns: 72px minmax(0,1fr); gap: 6px 18px; }
  .home #main-content .et_pb_main_blurb_image img { max-width: 72px !important; }
  .home #main-content .et_pb_blurb_content > h2 { font-size: 23px !important; }
  #main-content :is(.mod-services-grid,.md-features-grid) { grid-template-columns: minmax(0,1fr); }
  #main-content .mod-archive-notice { width: 88%; padding: 20px; text-align: left; }
  #main-content .mod-archive-notice strong { margin-bottom: 8px; }
  #main-content .et_pb_portfolio_item :is(h2,h3) { font-size: 25px !important; padding: 20px; }
  #main-content .md-work-img { padding-top: 65%; }
  #main-content .md-work-card h3 { font-size: 25px !important; }
  #main-content .md-story-stats { grid-template-columns: repeat(2,minmax(0,1fr)); }
  #main-content .md-stat { padding: 20px 12px; min-width: 0; overflow-wrap: anywhere; }
  #main-content .md-stat-num { font-size: clamp(21px,6vw,28px); }
}
@media screen and (max-width: 380px) {
  .single-project #main-content .gallery { grid-template-columns: minmax(0,1fr); }
  .home #main-content .et_pb_blurb_content { display: block; }
  .home #main-content .et_pb_main_blurb_image { justify-content: flex-start; margin-bottom: 18px; }
}
@media screen and (prefers-reduced-motion: reduce) {
  #main-content :is(.mod-service-card,.md-work-card,.md-work-img,.md-feature,.md-stat,.mod-family-card,.et_pb_portfolio_item,.et_portfolio_image img) {
    transition: none !important; transform: none !important;
  }
}


/* September 13, 2026: keep long words and legacy email addresses available
   when visitors enlarge text in the Contact, menu archive and sibling bridge. */
@media screen {
  #main-content .mod-legacy-notice-foot,
  #main-content .mod-menu-transcript,
  #main-content .mod-sibling-overview {
    overflow-wrap: anywhere;
  }
  #main-content .mod-sibling-copy { min-width: 0; }
}

/* September 17, 2026: a composed archive presentation. Existing photography,
   copy, navigation and print treatment remain authoritative. */
@media screen {
  #main-header { box-shadow: 0 3px 20px -15px rgba(26,58,44,.24); }
  #main-header #logo { max-height: 76% !important; }
  #main-header.et-fixed-header #logo { max-height: 78% !important; }

  .home #main-content .et_pb_slider .et_pb_slide {
    background: #193a2c !important;
    border-bottom: 1px solid #b08948;
  }
  .home #main-content .et_pb_slide_description {
    padding-block: clamp(56px, 5.5vw, 80px);
    padding-right: clamp(32px, 3vw, 48px);
  }
  .home #main-content .mod-hero-kicker {
    display: flex; align-items: center; flex-wrap: wrap; gap: 0 .55em;
    color: #ead7b3; font: 600 12px/1.7 var(--mod-font-body);
    letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 22px;
  }
  .home #main-content .mod-hero-kicker::before {
    content: ""; width: 30px; height: 1px; background: #d5b476;
    margin-right: 8px; flex: 0 0 30px;
  }
  .home #main-content .et_pb_slide_description h1 {
    font-size: clamp(42px, 5vw, 72px) !important;
    max-width: 11ch; margin-top: 0 !important; margin-bottom: 24px !important;
    line-height: 1.04; font-weight: 500 !important; letter-spacing: -.03em;
  }
  .home #main-content .et_pb_slide_description p { max-width: 50ch; line-height: 1.75; }
  .home #main-content .et_pb_slide::after {
    inset: 48px 4.5% 48px auto;
    border: 7px solid #f6f0e5; border-radius: 3px;
    background-position: 52% center;
    box-shadow: 0 18px 42px -22px rgba(0,0,0,.5);
    box-sizing: border-box;
  }
  .home #main-content .mod-hero-actions {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 10px; margin-top: 28px;
  }
  .home #main-content .mod-hero-actions .et_pb_more_button {
    margin: 0; border-radius: 5px !important;
    background: #f4e7cd !important; border-color: #f4e7cd !important;
    color: #193a2c !important; padding: 14px 24px !important;
    font-size: 13px !important; letter-spacing: .055em;
    max-width: 100%; box-sizing: border-box; text-align: center;
    box-shadow: none; line-height: 1.55;
  }
  .home #main-content .mod-hero-actions .et_pb_more_button:hover {
    background: #fffaf0 !important; border-color: #fffaf0 !important;
  }
  .home #main-content a.mod-hero-portfolio {
    display: inline-flex; align-items: center; gap: 14px; min-height: 44px;
    color: #fff !important; font: 500 14px/1.5 var(--mod-font-body);
    text-decoration: underline; text-decoration-color: #8aa596;
    text-underline-offset: 6px; text-decoration-thickness: 1px;
    padding: 6px 0; max-width: 100%;
  }
  .home #main-content a.mod-hero-portfolio:hover { text-decoration-color: #ead7b3; }
  .home #main-content .mod-hero-actions a:focus-visible {
    outline: 3px solid #ead7b3; outline-offset: 5px;
  }

  /* Keep the explanatory archive note readable without a second hero block. */
  .home #main-content .et_pb_section_2 .et_pb_section_parallax { padding-block: 0 20px; }
  .home #main-content .et_pb_promo {
    display: grid; grid-template-columns: minmax(0,1fr);
    align-items: center; gap: 20px 40px; text-align: left;
    max-width: 1180px; padding: 28px 32px !important;
    background: #f4ede0 !important; border: 1px solid #ded4c2;
    border-left: 3px solid #b08948; border-radius: 4px;
  }
  .home #main-content .et_pb_promo .et_pb_promo_description { padding: 0; }
  .home #main-content .et_pb_promo .et_pb_promo_description,
  .home #main-content .et_pb_promo .et_pb_promo_description * { color: #253f31 !important; }
  .home #main-content .et_pb_promo h2 { font-size: 28px !important; line-height: 1.2; padding-bottom: 10px; }
  .home #main-content .et_pb_promo p { font-size: 15px; line-height: 1.7; max-width: 66ch; padding-bottom: 0; }
  .home #main-content .et_pb_promo .et_pb_promo_button {
    background: transparent !important; border-color: #2d6a4f !important;
    color: #234d3b !important; border-radius: 5px !important;
    font-size: 12px !important; padding: 12px 18px !important;
    margin: 0; line-height: 1.55; text-align: center; max-width: 100%; box-sizing: border-box;
  }
  .home #main-content .et_pb_promo .et_pb_promo_button:hover { background: #e5ddce !important; }

  /* Shared surfaces and a consistent, quiet frame for the archive photographs. */
  #main-content :is(.et_pb_blurb,.mod-service-card,.md-feature,.md-work-card,.et_pb_portfolio_item,.mod-menu-card) {
    border-color: #ded8ca; border-radius: 6px;
    box-shadow: 0 4px 18px -12px rgba(26,58,44,.18);
  }
  #main-content :is(.mod-service-card,.md-feature) { border-top: 2px solid #b08948; }
  #main-content :is(a.mod-service-card,.md-work-card,.et_pb_portfolio_item):hover {
    transform: translateY(-2px); border-color: #95aa9b;
    box-shadow: 0 12px 30px -18px rgba(26,58,44,.35);
  }
  #main-content :is(.md-work-card,.et_pb_portfolio_item):focus-within {
    border-color: #2d6a4f; box-shadow: 0 0 0 2px #2d6a4f;
  }
  #main-content .md-work-img { padding-top: 70%; }
  #main-content .md-work-meta { background: #fffcf5; padding-block: 23px 25px; }
  #main-content .md-work-card h3 { font-size: 25px !important; }
  #main-content .et_pb_portfolio_item :is(h2,h3) { background: #fffcf5; }
  #main-content .et_pb_portfolio_item .et_portfolio_image img { aspect-ratio: 8 / 5; }
  #main-content :is(.mod-services-head,.md-work-head,.md-features-head,.mod-menus-head) > :is(.mod-eyebrow,.md-section-tag)::before {
    content: ""; display: inline-block; vertical-align: middle;
    width: 24px; height: 1px; background: #b08948; margin-right: 12px;
  }
  #main-content .md-about-hero { background: #193a2c !important; border-bottom: 1px solid #b08948; }
  #main-content .md-about-hero h1 { margin-top: 18px; }
  #main-content .md-about-story-inner { gap: clamp(32px,5vw,72px); }
  #main-content .md-stat { border: 1px solid #ded8ca; border-top: 2px solid #b08948; background: #fffcf5; }
  #main-content .md-feature { background: #fffdf8; }
  #main-content .md-about-work { background: #faf6ee; }
}
@media screen and (max-width: 1000px) {
  .home #main-content .et_pb_promo { grid-template-columns: minmax(0,1fr); gap: 18px; }
  .home #main-content .et_pb_promo_button { justify-self: start; }
}
@media screen and (max-width: 800px) {
  .home #main-content .et_pb_slide_description { padding: 44px 0 32px; }
  .home #main-content .mod-hero-kicker { font-size: 11px; letter-spacing: .08em; margin-bottom: 20px; }
  .home #main-content .mod-hero-kicker::before { width: 20px; flex-basis: 20px; margin-right: 3px; }
  .home #main-content .et_pb_slide_description h1 { font-size: clamp(44px,8vw,60px) !important; }
  .home #main-content .et_pb_slide::after {
    inset: auto; height: clamp(220px,58vw,360px); width: 88%;
    margin-bottom: 36px; border-width: 5px;
  }
  .home #main-content .mod-hero-actions { margin-top: 24px; }
}
@media screen and (max-width: 480px) {
  .home #main-content .mod-hero-kicker { display: block; max-width: 30ch; }
  .home #main-content .mod-hero-kicker::before { display: block; width: 32px; margin: 0 0 16px; }
  .home #main-content .mod-hero-actions .et_pb_more_button { font-size: 12px !important; padding: 14px 18px !important; }
  .home #main-content .et_pb_promo { padding: 24px !important; }
  .home #main-content .et_pb_promo h2 { font-size: 26px !important; }
  #main-content .md-work-img { padding-top: 66%; }
}
@media screen and (prefers-reduced-motion: reduce) {
  .home #main-content .mod-hero-actions a,
  #main-content :is(.et_pb_blurb,.mod-service-card,.md-feature,.md-work-card,.et_pb_portfolio_item,.et_portfolio_image img) {
    transition: none !important; transform: none !important;
  }
}
