@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--brand-green: #4fad4e;
	--green: #2f7d46;
	--green-dark: #205f35;
	--forest: #13382b;
	--forest-deep: #0c2a20;
	--leaf: #a8d96b;
	--ink: var(--forest);
	--ink-soft: #2e4a3c;
	--teal: var(--green);
	--teal-dark: var(--green-dark);
	--lime: var(--leaf);
	--sand: #f6f6f0;
	--mist: #eaf5e8;
	--white: #ffffff;
	--muted: #5c6f64;
	--line: #d8e3d8;
	--warning: #a86619;
	--shadow: 0 24px 72px rgba(19, 56, 43, .10);
	--shadow-small: 0 10px 30px rgba(19, 56, 43, .07);
	--radius: 16px;
	--radius-small: 9px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--sand);
	color: var(--ink);
	font-family: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	font-weight: 450;
	line-height: 1.68;
	font-synthesis: none;
	text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3, h4 {
	margin: 0 0 1rem;
	color: var(--ink);
	font-family: "Manrope", ui-sans-serif, sans-serif;
	font-weight: 700;
	text-wrap: balance;
}
h1 { max-width: 920px; font-size: clamp(3rem, 5.3vw, 5rem); line-height: 1.01; letter-spacing: -.048em; font-weight: 720; }
h2 { font-size: clamp(2rem, 3.4vw, 3.25rem); line-height: 1.06; letter-spacing: -.038em; font-weight: 700; }
h3 { font-size: 1.24rem; line-height: 1.2; letter-spacing: -.022em; font-weight: 680; }
h4 { line-height: 1.24; letter-spacing: -.018em; font-weight: 680; }
ul, ol { margin: 0; padding-left: 1.2rem; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(246, 246, 240, .96);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(19, 56, 43, .11);
}
.utility-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: .48rem max(1rem, calc((100vw - 1200px) / 2));
	background: var(--forest-deep);
	color: rgba(255,255,255,.82);
	font-size: .8rem;
}
.utility-bar div { display: flex; gap: 1.25rem; }
.utility-bar a { color: var(--white); font-weight: 650; }
.nav-wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: .9rem 1.25rem;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1.5rem;
	align-items: center;
}
.brand { display: flex; align-items: center; gap: .75rem; min-width: 230px; }
.brand-mark {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50% 50% 50% 12px;
	background: var(--brand-green);
	color: var(--forest);
	font-size: 1.25rem;
	font-weight: 800;
}
.brand strong, .brand small { display: block; }
.brand strong { font-weight: 740; letter-spacing: -.028em; }
.brand small { color: var(--muted); font-size: .76rem; font-weight: 520; letter-spacing: .005em; }
.primary-nav .menu { display: flex; justify-content: center; gap: 1.45rem; list-style: none; padding: 0; }
.primary-nav a { color: var(--ink-soft); font-weight: 640; font-size: .9rem; letter-spacing: -.01em; }
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--teal); }
.header-actions, .cta-row { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.nav-toggle { display: none; }

.button, .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: .78rem 1.1rem;
	border: 1px solid transparent;
	border-radius: var(--radius-small);
	font-weight: 700;
	line-height: 1.1;
	cursor: pointer;
	transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.button:hover, .wp-block-button__link:hover { transform: translateY(-1px); }
.button-primary, .wp-block-button__link { background: var(--teal); color: var(--white); }
.button-primary:hover { background: var(--teal-dark); }
.button-quiet { border-color: rgba(19,56,43,.18); background: transparent; color: var(--ink); }
.button-quiet:hover { border-color: var(--green); color: var(--green-dark); }
.button-light { background: var(--white); color: var(--ink); }
.button-accent { background: var(--brand-green); color: var(--forest); }
.button-accent:hover { background: var(--leaf); }
.button-link { min-height: auto; padding: 0; border-radius: 0; color: var(--teal); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
	outline: 3px solid rgba(79, 173, 78, .38);
	outline-offset: 3px;
}

.page-shell { background: var(--sand); }
.section { max-width: 1200px; margin: 0 auto; padding: 5.7rem 1.25rem; }
.section.compact { padding-top: 3.4rem; padding-bottom: 3.4rem; }
.section.narrow { max-width: 880px; }
.section-head { display: grid; grid-template-columns: minmax(0, .8fr) minmax(280px, .45fr); gap: 2rem; align-items: end; margin-bottom: 2rem; }
.section-head p { font-size: 1.05rem; }
.eyebrow { margin-bottom: .72rem; color: var(--teal); text-transform: uppercase; font-size: .75rem; font-weight: 750; letter-spacing: .13em; }

.hero {
	position: relative;
	overflow: hidden;
	background: var(--forest);
	color: var(--white);
}
.hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 82% 20%, rgba(168,217,107,.18), transparent 28%),
		linear-gradient(125deg, rgba(79,173,78,.17), transparent 48%);
}
.hero-inner {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 6.6rem 1.25rem 5.5rem;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
	gap: 4rem;
	align-items: center;
}
.hero h1, .hero h2, .hero h3, .hero p, .hero .eyebrow { color: var(--white); }
.hero p { max-width: 720px; font-size: 1.1rem; color: rgba(255,255,255,.78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-brief {
	position: relative;
	padding: 1.5rem;
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	color: var(--ink);
}
.hero-brief:before {
	content: "Quote checklist";
	display: inline-block;
	margin-bottom: 1rem;
	padding: .35rem .6rem;
	border-radius: 999px;
	background: var(--mist);
	color: var(--teal-dark);
	font-size: .75rem;
	font-weight: 750;
	text-transform: uppercase;
	letter-spacing: .08em;
}
.hero-brief p { color: var(--muted); font-size: .95rem; }
.brief-list { display: grid; gap: .65rem; list-style: none; padding: 0; margin: 0 0 1.2rem; }
.brief-list li { display: grid; grid-template-columns: 1.35rem 1fr; gap: .6rem; color: var(--ink-soft); font-weight: 620; }
.brief-list li:before { content: "\2713"; color: var(--brand-green); font-weight: 800; }

.trust-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-bar span { padding: 1.1rem .8rem; text-align: center; color: var(--ink-soft); font-size: .85rem; font-weight: 650; border-right: 1px solid var(--line); }
.trust-bar span:last-child { border-right: 0; }

.grid { display: grid; gap: 1.15rem; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .media-card, .fact-card, .journey-step {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.35rem;
	box-shadow: var(--shadow-small);
}
.card img, .media-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; margin-bottom: 1rem; border-radius: 12px; background: var(--mist); }
.card .tag, .media-card .tag { display: inline-flex; margin-bottom: .8rem; padding: .28rem .52rem; border-radius: 999px; background: var(--mist); color: var(--teal-dark); font-size: .69rem; font-weight: 720; text-transform: uppercase; letter-spacing: .07em; }
.card .button { margin-top: .5rem; }
.fact-card strong { display: block; margin-bottom: .4rem; color: var(--teal-dark); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .88fr); gap: 2.8rem; align-items: center; }
.split.reverse > :first-child { order: 2; }
.split > img { width: 100%; min-height: 360px; max-height: 540px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.band { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mist-band { background: var(--mist); }
.dark-band { background: var(--ink); color: var(--white); }
.dark-band h2, .dark-band h3, .dark-band p, .dark-band .eyebrow { color: var(--white); }

.task-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.task-card { padding: 1.4rem; border-top: 4px solid var(--brand-green); background: var(--white); border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-small); }
.task-card span { color: var(--teal); font-weight: 750; font-size: .76rem; text-transform: uppercase; letter-spacing: .09em; }
.journey { display: grid; grid-template-columns: repeat(5, 1fr); gap: .8rem; counter-reset: journey; }
.journey-step { position: relative; padding-top: 3.2rem; counter-increment: journey; }
.journey-step:before { content: counter(journey, decimal-leading-zero); position: absolute; top: 1rem; left: 1.2rem; color: var(--teal); font-weight: 750; font-size: .78rem; }
.journey-step p { font-size: .9rem; }
.evidence-list { display: grid; gap: .85rem; list-style: none; padding: 0; }
.evidence-list li { padding: 1rem 1rem 1rem 3.15rem; border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--white); position: relative; color: var(--ink-soft); }
.evidence-list li:before { content: ""; position: absolute; left: 1rem; top: 1.05rem; width: 1.2rem; height: 1.2rem; border-radius: 50%; background: var(--brand-green); box-shadow: inset 0 0 0 4px var(--mist); }

.spec-table-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-small); }
.spec-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.spec-table th, .spec-table td { padding: .95rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spec-table th { width: 28%; color: var(--teal-dark); background: var(--mist); font-size: .82rem; font-weight: 720; text-transform: uppercase; letter-spacing: .05em; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.proof-note { padding: 1rem 1.1rem; border-left: 4px solid var(--warning); border-radius: 0 var(--radius-small) var(--radius-small) 0; background: #fff6e9; color: var(--ink-soft); }
.chip-row { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip { padding: .42rem .68rem; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink-soft); font-size: .8rem; font-weight: 650; }

.factory-hero .hero-inner { grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); }
.factory-hero-visual { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.factory-hero-visual img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.factory-hero-visual figcaption { padding: .8rem 1rem; color: var(--ink-soft); background: var(--white); font-size: .82rem; line-height: 1.5; }
.factory-process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; counter-reset: factory-process; }
.factory-process-step { min-height: 100%; padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-small); }
.factory-process-step > span { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; margin-bottom: 1rem; border-radius: 50%; background: var(--forest); color: var(--white); font-size: .75rem; font-weight: 750; }
.factory-equipment-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem; }
.factory-equipment-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-small); }
.factory-equipment-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--mist); }
.factory-equipment-card > div { padding: 1.35rem; }
.factory-section-actions { margin-top: 1.5rem; }
.factory-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.factory-gallery figure { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-small); }
.factory-gallery img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--white); }
.factory-gallery figcaption { padding: .9rem 1rem 1rem; color: var(--ink-soft); font-size: .86rem; line-height: 1.55; }
.factory-boundary { padding: clamp(1.5rem, 4vw, 2.4rem); border-left: 5px solid var(--brand-green); border-radius: 0 var(--radius) var(--radius) 0; background: var(--white); box-shadow: var(--shadow-small); }
.factory-boundary h2 { max-width: 820px; }
.factory-boundary p:last-child { max-width: 920px; margin-bottom: 0; }
.factory-final-cta { padding: 0; border-bottom: 0; }
.factory-final-cta p { max-width: 760px; color: rgba(255,255,255,.74); }
.factory-final-actions { display: flex; flex-direction: column; align-items: stretch; gap: .75rem; min-width: 250px; }
.factory-final-actions > a:not(.button) { color: var(--white); text-align: center; font-weight: 680; }

.gw-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 2.1rem); box-shadow: var(--shadow); }
.form-heading { margin-bottom: 1.4rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-section { grid-column: 1 / -1; margin: .5rem 0 0; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.form-section h3 { margin-bottom: .25rem; }
.gw-form label { display: grid; gap: .35rem; color: var(--ink-soft); font-weight: 650; }
.gw-form label span { font-size: .88rem; }
.gw-form input, .gw-form select, .gw-form textarea {
	width: 100%;
	padding: .82rem .85rem;
	border: 1px solid #b9c9bb;
	border-radius: var(--radius-small);
	background: #fcfdf9;
	color: var(--ink);
	font: inherit;
}
.gw-form input:focus, .gw-form select:focus, .gw-form textarea:focus { outline: 3px solid rgba(79,173,78,.22); border-color: var(--brand-green); }
.gw-form .span-2 { grid-column: 1 / -1; }
.gw-form .consent { grid-template-columns: auto 1fr; align-items: start; gap: .65rem; font-weight: 500; }
.gw-form .consent input { width: auto; margin-top: .3rem; }
.gw-form button { margin-top: 1.15rem; }
.form-note, .small { font-size: .86rem; }
.form-error { padding: .9rem 1rem; margin-bottom: 1rem; border-radius: var(--radius-small); background: #fff0ee; color: #8b2f26; }
.gwb-hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { background: var(--forest-deep); color: var(--white); }
.site-footer h2, .site-footer h3, .site-footer p, .site-footer a, .site-footer .eyebrow { color: var(--white); }
.site-footer .button-light { color: var(--ink); }
.footer-cta { max-width: 1200px; margin: 0 auto; padding: 4rem 1.25rem 3rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-cta h2 { max-width: 780px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 3rem 1.25rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-grid a { display: block; margin-bottom: .55rem; color: rgba(255,255,255,.72); }
.footer-grid a:hover { color: var(--brand-green); }
.footer-grid p, .footer-grid .small, .footer-bottom { color: rgba(255,255,255,.62); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 1.2rem 1.25rem 2rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.14); }

@media (max-width: 1020px) {
	.nav-wrap { grid-template-columns: 1fr auto; }
	.nav-toggle { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 .9rem; border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--white); font-weight: 700; }
	.primary-nav { display: none; grid-column: 1 / -1; }
	.primary-nav.is-open { display: block; }
	.primary-nav .menu { flex-direction: column; align-items: flex-start; gap: .75rem; }
	.header-actions { grid-column: 1 / -1; }
	.hero-inner, .factory-hero .hero-inner, .split, .section-head, .footer-cta { grid-template-columns: 1fr; }
	.grid.three, .grid.four, .task-grid { grid-template-columns: repeat(2, 1fr); }
	.factory-process-grid, .factory-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.factory-equipment-grid { grid-template-columns: 1fr; }
	.journey { grid-template-columns: repeat(3, 1fr); }
	.trust-bar-inner { grid-template-columns: repeat(3, 1fr); }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 660px) {
	.utility-bar { display: none; }
	.header-actions .button { flex: 1; }
	.hero-inner { padding: 4.6rem 1rem 4rem; gap: 2.2rem; }
	h1 { font-size: clamp(2.55rem, 13vw, 3.7rem); }
	.section { padding: 4rem 1rem; }
	.grid.two, .grid.three, .grid.four, .task-grid, .journey, .trust-bar-inner, .form-grid, .footer-grid, .factory-process-grid, .factory-gallery { grid-template-columns: 1fr; }
	.factory-final-actions { width: 100%; }
	.factory-final-actions .button { width: 100%; }
	.trust-bar span { border-right: 0; border-bottom: 1px solid var(--line); }
	.footer-bottom { display: grid; }
	.cta-row .button { width: 100%; }
}

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