/*
Theme Name: Weisman Green Architecture V2
Theme URI: https://www.greenbuildingisrael.co.il/
Author: Weisman Green Architecture
Description: תבנית מותאמת אישית לאתר וייסמן אדריכלות ירוקה, עם עמוד בית שיווקי ותבניות אוטומטיות לבלוג ולמאמרים.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.1
Requires PHP: 7.4
Text Domain: weisman-green
*/

:root {
	--wg-green: #193e24;
	--wg-green-dark: #0d2d1a;
	--wg-olive: #6d783d;
	--wg-sage: #aeb8a0;
	--wg-cream: #f6f3ec;
	--wg-paper: #fffefa;
	--wg-blush: #f4efeb;
	--wg-ink: #171b18;
	--wg-muted: #666d67;
	--wg-line: rgba(25, 62, 36, .16);
	--wg-shell: min(1280px, calc(100% - 72px));
	--wg-shadow: 0 24px 70px rgba(17, 35, 22, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	direction: rtl;
	background: var(--wg-paper);
	color: var(--wg-ink);
	font-family: Arial, "Noto Sans Hebrew", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
body.menu-is-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
.site-shell { width: var(--wg-shell); margin-inline: auto; }
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.skip-link {
	position: fixed;
	top: -100px;
	right: 18px;
	z-index: 99999;
	background: white;
	color: var(--wg-green);
	padding: 12px 18px;
}
.skip-link:focus { top: 12px; }

/* Header */
.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1000;
	min-height: 86px;
	background: rgba(255, 254, 250, .78);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: min-height .25s ease, background .25s ease, box-shadow .25s ease;
}
body.admin-bar .site-header { top: 32px; }
.site-header.is-scrolled {
	min-height: 70px;
	background: rgba(255, 254, 250, .96);
	border-color: var(--wg-line);
	box-shadow: 0 8px 35px rgba(18, 40, 24, .08);
}
.header-inner {
	min-height: inherit;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 28px;
}
.site-brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; color: var(--wg-ink); }
.brand-mark { position: relative; display: block; width: 38px; height: 48px; transform: rotate(-8deg); }
.brand-mark::before,
.brand-mark::after {
	content: "";
	position: absolute;
	right: 5px;
	width: 22px;
	height: 40px;
	border: 1.5px solid var(--wg-green);
	border-radius: 100% 0 100% 0;
	transform: rotate(-22deg);
}
.brand-mark::after { right: 15px; top: 5px; width: 1px; height: 36px; border: 0; border-right: 1.5px solid var(--wg-green); border-radius: 0; transform: rotate(24deg); }
.brand-mark i::before,
.brand-mark i::after { content: ""; position: absolute; width: 9px; height: 1px; background: var(--wg-green); right: 15px; top: 17px; transform: rotate(-14deg); }
.brand-mark i::after { top: 26px; right: 13px; transform: rotate(52deg); }
.brand-text { font-size: 18px; white-space: nowrap; }
.custom-logo-wrap .custom-logo-link { display: block; }
.custom-logo-wrap img { max-height: 52px; width: auto; }
.main-navigation { justify-self: center; }
.main-navigation .menu { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; justify-content: center; gap: clamp(22px, 3vw, 46px); }
.main-navigation a { position: relative; display: inline-block; padding: 11px 0; font-size: 14px; font-weight: 600; }
.main-navigation a::after { content: ""; position: absolute; right: 0; bottom: 5px; width: 0; height: 1px; background: var(--wg-green); transition: width .25s ease; }
.main-navigation a:hover::after,
.main-navigation a:focus-visible::after,
.main-navigation .current-menu-item > a::after { width: 100%; }
.main-navigation .sub-menu { position: absolute; display: none; list-style: none; min-width: 210px; padding: 12px 18px; margin: 0; background: white; box-shadow: var(--wg-shadow); }
.main-navigation li { position: relative; }
.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu { display: block; }
.header-button {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 48px;
	padding: 0 20px;
	border-radius: 10px;
	background: var(--wg-green);
	color: white;
	font-size: 13px;
	font-weight: 700;
	box-shadow: 0 8px 22px rgba(25, 62, 36, .18);
	transition: transform .2s ease, background .2s ease;
}
.header-button:hover { transform: translateY(-2px); background: var(--wg-green-dark); }
.menu-toggle { display: none; background: none; border: 0; padding: 12px; cursor: pointer; }
.menu-toggle > span:not(.screen-reader-text) { display: block; width: 25px; height: 2px; margin: 6px 0; background: var(--wg-green); }

/* Shared controls */
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	min-height: 54px;
	padding: 0 26px;
	border: 1px solid transparent;
	border-radius: 9px;
	font-weight: 700;
	font-size: 15px;
	transition: transform .22s ease, color .22s ease, background .22s ease, border .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button--green { background: var(--wg-green); color: white; box-shadow: 0 12px 26px rgba(25,62,36,.2); }
.button--green:hover { background: var(--wg-green-dark); }
.button--ghost { border-color: var(--wg-ink); background: rgba(255,255,255,.65); }
.button--ghost:hover { background: white; }
.button--light { background: white; color: var(--wg-green); }
.section-kicker { margin: 0 0 20px; color: var(--wg-olive); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.section-kicker::before { content: ""; display: inline-block; width: 28px; height: 1px; margin-left: 10px; background: currentColor; vertical-align: middle; }
.line-heading { display: flex; align-items: center; gap: 24px; }
.line-heading h2 { margin: 0; color: var(--wg-green); font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 4.5vw, 62px); font-weight: 400; }
.line-heading > span { flex: 1; height: 1px; background: var(--wg-olive); opacity: .6; }
.section-title-row { display: flex; align-items: center; justify-content: space-between; gap: 36px; margin-bottom: 30px; }
.section-title-row h2 { position: relative; margin: 0; color: var(--wg-green); font-family: Georgia, "Times New Roman", serif; font-size: clamp(40px, 5vw, 65px); font-weight: 400; }
.section-title-row h2::after { content: ""; display: inline-block; width: 70px; height: 1px; margin-right: 20px; vertical-align: middle; background: var(--wg-olive); }
.section-title-row > a { font-size: 14px; border-bottom: 1px solid currentColor; }

/* Homepage hero */
.home-hero {
	position: relative;
	min-height: 760px;
	display: grid;
	grid-template-columns: 57% 43%;
	background: #fbfbf9;
	overflow: hidden;
}
.home-hero__image { grid-column: 1; min-height: 760px; background-size: cover; background-position: center 47%; }
.home-hero__copy {
	grid-column: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 130px clamp(54px, 6vw, 105px) 115px clamp(36px, 4vw, 76px);
	background: radial-gradient(circle at 2% 46%, rgba(255,255,255,.05), #fbfbf9 48%), #fbfbf9;
}
.home-hero__copy h1 {
	margin: 0;
	font-size: clamp(62px, 6.4vw, 104px);
	line-height: .91;
	letter-spacing: -.055em;
	font-weight: 700;
}
.home-hero__copy > p:not(.section-kicker) { max-width: 560px; margin: 28px 0 0; color: #4e554f; font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; gap: 16px; margin-top: 34px; }
.hero-proof {
	position: absolute;
	left: 17%;
	right: 17%;
	bottom: 26px;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	min-height: 76px;
	background: rgba(255,255,255,.88);
	backdrop-filter: blur(13px);
	-webkit-backdrop-filter: blur(13px);
	border: 1px solid rgba(255,255,255,.82);
	border-radius: 16px;
	box-shadow: 0 15px 38px rgba(21,39,25,.12);
}
.hero-proof div { display: flex; align-items: center; justify-content: center; gap: 18px; position: relative; font-size: 15px; }
.hero-proof div + div::before { content: ""; position: absolute; top: 18px; bottom: 18px; right: 0; width: 1px; background: var(--wg-line); }
.mini-icon { color: var(--wg-green); font-size: 28px; font-weight: 400; }

/* Statement */
.home-statement {
	position: relative;
	min-height: 250px;
	display: grid;
	grid-template-columns: .6fr 1.5fr .7fr;
	align-items: center;
	gap: 55px;
	padding: 45px max(5vw, 44px);
	background: var(--wg-cream);
	overflow: hidden;
}
.home-statement::after { content: ""; position: absolute; inset: 0; opacity: .28; background-image: repeating-radial-gradient(ellipse at -12% 50%, transparent 0 28px, rgba(109,120,61,.16) 30px 31px); pointer-events: none; }
.home-statement > * { position: relative; z-index: 1; }
.home-statement > p { grid-column: 2; margin: 0; color: var(--wg-green); font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 4.2vw, 59px); line-height: 1.26; }
.home-statement strong { color: var(--wg-ink); font-weight: 400; }
.statement-lines { border-left: 1px solid var(--wg-olive); height: 160px; opacity: .55; }
.statement-sketch { height: 150px; display: grid; place-items: end center; position: relative; }
.statement-sketch::before { content: ""; position: absolute; width: 115px; height: 110px; bottom: 20px; border-radius: 50% 45% 55% 40%; background: radial-gradient(circle at 40% 40%, rgba(72,111,65,.45), rgba(72,111,65,.08) 65%, transparent 67%); filter: blur(1px); }
.statement-sketch span { width: 1px; height: 88px; background: var(--wg-green); }
.statement-sketch i,
.statement-sketch b { position: absolute; bottom: 9px; width: 75%; height: 1px; background: rgba(25,62,36,.4); transform: rotate(8deg); }
.statement-sketch b { transform: rotate(-8deg); }

/* Services */
.services-section { padding: 18px 0 22px; background: white; }
.services-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.services-cards article { min-height: 186px; padding: 26px 26px 22px; text-align: center; background: linear-gradient(145deg, #fbf9f5, #f3eeea); border: 1px solid rgba(109,120,61,.06); border-radius: 14px; }
.service-icon { display: grid; place-items: center; width: 56px; height: 50px; margin: 0 auto 8px; color: var(--wg-olive); font-size: 42px; line-height: 1; }
.services-cards h2 { margin: 7px 0 4px; color: var(--wg-green); font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 400; }
.services-cards p { max-width: 235px; margin: 0 auto; color: var(--wg-muted); font-size: 13px; line-height: 1.6; }

/* Benefits */
.green-benefits { min-height: 270px; display: grid; grid-template-columns: 30% 70%; background: var(--wg-cream); border-block: 1px solid rgba(109,120,61,.11); }
.green-benefits__image { background-size: cover; background-position: center 62%; }
.green-benefits__content { padding: 24px clamp(40px, 5vw, 90px); }
.green-benefits .line-heading h2 { font-size: clamp(36px, 3.8vw, 52px); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 22px; }
.benefits-grid article { position: relative; padding: 0 24px; text-align: center; }
.benefits-grid article + article::before { content: ""; position: absolute; right: 0; top: 15px; bottom: 8px; width: 1px; background: rgba(109,120,61,.38); }
.benefits-grid article > span { display: block; min-height: 46px; color: var(--wg-olive); font-size: 38px; line-height: 1; }
.benefits-grid h3 { margin: 7px 0 2px; font-size: 16px; }
.benefits-grid p { margin: 0; color: var(--wg-muted); font-size: 11px; line-height: 1.55; }

/* Projects */
.projects-section { padding: 38px 0 52px; background: white; }
.project-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-showcase > a { position: relative; min-height: 290px; overflow: hidden; border-radius: 11px; background-size: cover; background-position: center; box-shadow: 0 12px 30px rgba(10,34,20,.1); transition: transform .3s ease, box-shadow .3s ease; }
.project-showcase > a:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(10,34,20,.18); }
.project-showcase > a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,25,14,.78), rgba(7,25,14,.05) 60%); }
.project-showcase span { position: absolute; z-index: 1; bottom: 22px; right: 25px; color: white; }
.project-showcase strong { display: block; font-size: 24px; }
.project-showcase small { color: rgba(255,255,255,.78); font-size: 13px; }

/* Process */
.process-section { padding: 30px 0 45px; background: var(--wg-cream); }
.process-section .line-heading { margin-bottom: 24px; }
.process-section .line-heading h2 { font-size: clamp(38px, 4.2vw, 55px); }
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(255,255,255,.58); border-radius: 14px; box-shadow: 0 12px 35px rgba(24,50,28,.05); }
.process-track article { position: relative; min-height: 145px; padding: 30px 36px 20px; text-align: center; }
.process-track article + article::before { content: ""; position: absolute; top: 37px; right: -23%; width: 46%; height: 1px; background: var(--wg-olive); }
.process-track article + article::after { content: "◆"; position: absolute; top: 27px; right: -2px; color: var(--wg-olive); font-size: 11px; }
.process-track b { display: grid; place-items: center; width: 36px; height: 36px; margin: -48px auto 5px; border-radius: 50%; background: var(--wg-green); color: white; font-size: 13px; box-shadow: 0 5px 14px rgba(25,62,36,.22); }
.process-track h3 { margin: 9px 0 4px; color: var(--wg-green); font-size: 19px; }
.process-track p { max-width: 205px; margin: 0 auto; color: var(--wg-muted); font-size: 12px; }

/* Post cards and homepage blog */
.home-blog { padding: 40px 0 75px; background: white; }
.post-card-grid,
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { overflow: hidden; background: white; border: 1px solid rgba(25,62,36,.1); border-radius: 13px; box-shadow: 0 10px 30px rgba(17,42,24,.06); transition: transform .25s ease, box-shadow .25s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(17,42,24,.12); }
.post-card__image { display: block; aspect-ratio: 1.65; background-size: cover; background-position: center; }
.post-card__body { padding: 22px 22px 24px; }
.post-card__meta { display: flex; justify-content: space-between; gap: 14px; color: var(--wg-olive); font-size: 11px; }
.post-card h3 { margin: 13px 0 10px; color: var(--wg-green); font-size: 22px; line-height: 1.35; }
.post-card p { margin: 0 0 16px; color: var(--wg-muted); font-size: 13px; }
.post-card__link { color: var(--wg-green); font-size: 12px; font-weight: 700; border-bottom: 1px solid currentColor; }

/* CTA */
.contact-cta,
.article-cta { position: relative; overflow: hidden; padding: 95px 0; text-align: center; background: var(--wg-green); color: white; }
.contact-cta::before,
.article-cta::before { content: ""; position: absolute; inset: -40%; background: radial-gradient(circle, rgba(255,255,255,.1), transparent 52%); }
.contact-cta .site-shell,
.article-cta .site-shell { position: relative; z-index: 1; }
.contact-cta p,
.article-cta p { margin: 0 0 10px; color: var(--wg-sage); font-size: 15px; }
.contact-cta h2,
.article-cta h2 { margin: 0 0 28px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(50px, 7vw, 90px); font-weight: 400; line-height: 1; }

/* Blog index */
.blog-hero {
	padding: 180px 0 105px;
	background: linear-gradient(90deg, rgba(246,243,236,.96), rgba(246,243,236,.76)), url("assets/images/project-residence.jpg") center 42% / cover;
}
.blog-hero--compact { padding-bottom: 80px; }
.blog-hero h1 { max-width: 950px; margin: 0; color: var(--wg-green); font-family: Georgia, "Times New Roman", serif; font-size: clamp(70px, 9vw, 130px); font-weight: 400; line-height: .95; }
.blog-hero > .site-shell > p:not(.section-kicker) { max-width: 560px; margin: 24px 0 0; color: var(--wg-muted); font-size: 19px; }
.archive-description { max-width: 650px; margin-top: 20px; color: var(--wg-muted); }
.archive-description p { margin: 0; }
.blog-content { padding-block: 75px 100px; }
.pagination { margin-top: 55px; }
.pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.pagination .page-numbers { min-width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--wg-line); border-radius: 7px; }
.pagination .current { background: var(--wg-green); color: white; }
.empty-state { padding: 90px 20px; text-align: center; }
.empty-state h2 { color: var(--wg-green); font-family: Georgia, serif; font-size: 48px; font-weight: 400; }

/* Single post */
.single-hero { position: relative; min-height: 700px; display: flex; align-items: end; color: white; overflow: hidden; }
.single-hero__image,
.single-hero__overlay { position: absolute; inset: 0; }
.single-hero__image { background-size: cover; background-position: center; transform: scale(1.02); }
.single-hero__overlay { background: linear-gradient(0deg, rgba(7,28,16,.92), rgba(7,28,16,.2) 70%); }
.single-hero__content { position: relative; z-index: 1; padding-block: 190px 75px; }
.single-breadcrumbs { display: flex; gap: 11px; margin-bottom: 20px; color: rgba(255,255,255,.72); font-size: 12px; }
.single-hero h1 { max-width: 1040px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(58px, 7vw, 102px); font-weight: 400; line-height: 1.05; }
.single-meta { display: flex; gap: 28px; margin-top: 28px; color: rgba(255,255,255,.76); font-size: 12px; }
.article-layout { display: grid; grid-template-columns: 230px minmax(0, 780px); justify-content: center; gap: 80px; padding-block: 85px; }
.article-aside { align-self: start; position: sticky; top: 110px; padding-top: 18px; border-top: 1px solid var(--wg-olive); display: grid; gap: 12px; }
.article-aside span { color: var(--wg-muted); font-size: 11px; }
.article-aside strong { color: var(--wg-green); font-size: 18px; }
.article-aside a { margin-top: 20px; color: var(--wg-green); font-size: 13px; font-weight: 700; }
.entry-content { color: #333a35; font-size: 18px; line-height: 1.95; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content p { margin: 0 0 1.45em; }
.entry-content h2 { margin: 1.5em 0 .55em; color: var(--wg-green); font-family: Georgia, "Times New Roman", serif; font-size: 42px; font-weight: 400; line-height: 1.2; }
.entry-content h3 { margin: 1.4em 0 .45em; color: var(--wg-green); font-size: 28px; }
.entry-content h4 { color: var(--wg-green); font-size: 21px; }
.entry-content a { color: var(--wg-green); text-decoration: underline; text-underline-offset: 3px; }
.entry-content ul,
.entry-content ol { padding-right: 1.4em; margin-bottom: 1.5em; }
.entry-content li { margin-bottom: .55em; }
.entry-content blockquote { margin: 2em 0; padding: 24px 28px; border-right: 3px solid var(--wg-olive); background: var(--wg-cream); color: var(--wg-green); font-family: Georgia, serif; font-size: 24px; }
.entry-content figure { margin: 2em 0; }
.entry-content img { border-radius: 10px; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 2em 0; }
.entry-content th,
.entry-content td { padding: 12px; border: 1px solid var(--wg-line); text-align: right; }
.article-footer { padding-bottom: 85px; }
.article-tags { padding: 20px 0; border-top: 1px solid var(--wg-line); color: var(--wg-muted); font-size: 13px; }
.post-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 25px; }
.post-navigation > div { min-height: 90px; display: flex; align-items: center; padding: 20px; background: var(--wg-cream); border-radius: 9px; color: var(--wg-green); font-weight: 700; }

/* Pages, comments and 404 */
.standard-page__hero { padding: 180px 0 90px; background: var(--wg-cream); }
.standard-page__hero h1 { max-width: 1000px; margin: 0; color: var(--wg-green); font-family: Georgia, serif; font-size: clamp(64px, 8vw, 110px); font-weight: 400; line-height: 1; }
.standard-page__content { max-width: 850px; padding-block: 75px 100px; }
.comments-area { max-width: 850px; padding-block: 10px 85px; }
.comments-area h2,
.comments-area .comment-reply-title { color: var(--wg-green); font-family: Georgia, serif; font-size: 36px; font-weight: 400; }
.comment-list { padding: 0; list-style: none; }
.comment-list li { margin: 18px 0; padding: 22px; background: var(--wg-cream); border-radius: 9px; }
.comment-form { display: grid; gap: 12px; }
.comment-form p { margin: 0; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.search-form input[type="search"] { width: 100%; padding: 13px; border: 1px solid var(--wg-line); border-radius: 7px; background: white; }
.comment-form .submit,
.search-form .search-submit { min-height: 48px; padding: 0 24px; border: 0; border-radius: 7px; background: var(--wg-green); color: white; font-weight: 700; cursor: pointer; }
.not-found-page { min-height: 75vh; display: grid; place-items: center; padding: 150px 0 80px; text-align: center; background: var(--wg-cream); }
.not-found-page span { color: var(--wg-sage); font-family: Georgia, serif; font-size: 100px; }
.not-found-page h1 { margin: 0; color: var(--wg-green); font-size: 54px; }
.not-found-page p { margin-bottom: 28px; color: var(--wg-muted); }

/* Footer */
.site-footer { padding: 70px 0 26px; background: #0a2415; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .8fr; gap: 70px; align-items: start; padding-bottom: 65px; }
.site-brand--footer { color: white; }
.site-brand--footer .brand-mark::before,
.site-brand--footer .brand-mark::after { border-color: var(--wg-sage); }
.site-brand--footer .brand-mark i::before,
.site-brand--footer .brand-mark i::after { background: var(--wg-sage); }
.footer-grid > div:first-child > p { max-width: 360px; color: rgba(255,255,255,.56); }
.site-footer .menu { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; font-size: 13px; }
.footer-contact { display: grid; gap: 10px; justify-items: start; }
.footer-contact strong { font-size: 15px; }
.footer-contact a { color: var(--wg-sage); border-bottom: 1px solid currentColor; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.45); font-size: 11px; }

/* WordPress alignment */
.alignwide { width: min(1100px, 100%); max-width: none; margin-right: 50%; transform: translateX(50%); }
.alignfull { width: 100vw; max-width: none; margin-right: 50%; transform: translateX(50%); }
.wp-caption-text,
.gallery-caption { color: var(--wg-muted); font-size: 12px; }

@media (max-width: 1100px) {
	:root { --wg-shell: min(100% - 48px, 980px); }
	.header-inner { grid-template-columns: 1fr auto; }
	.main-navigation {
		position: fixed;
		top: 0;
		right: 0;
		width: min(390px, 88vw);
		height: 100vh;
		padding: 115px 34px 40px;
		background: var(--wg-paper);
		transform: translateX(110%);
		transition: transform .28s ease;
		box-shadow: -20px 0 60px rgba(12,35,19,.15);
	}
	.main-navigation.is-open { transform: translateX(0); }
	.main-navigation .menu { align-items: stretch; flex-direction: column; gap: 5px; }
	.main-navigation a { display: block; font-size: 22px; }
	.main-navigation .sub-menu { position: static; display: block; box-shadow: none; background: transparent; }
	.header-button { display: none; }
	.menu-toggle { display: block; position: relative; z-index: 2; }
	.home-hero { grid-template-columns: 52% 48%; }
	.home-hero__copy { padding-inline: 48px 34px; }
	.home-hero__copy h1 { font-size: 68px; }
	.hero-proof { left: 8%; right: 8%; }
	.services-cards { grid-template-columns: 1fr 1fr; }
	.green-benefits { grid-template-columns: 38% 62%; }
	.benefits-grid { grid-template-columns: 1fr 1fr; gap: 24px 0; }
	.benefits-grid article:nth-child(3)::before { display: none; }
	.article-layout { grid-template-columns: 190px minmax(0, 700px); gap: 45px; }
}

@media (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 760px) {
	:root { --wg-shell: calc(100% - 34px); }
	.site-header { min-height: 72px; }
	.brand-text { font-size: 15px; }
	.brand-mark { width: 31px; height: 42px; transform: scale(.84) rotate(-8deg); transform-origin: right center; }
	.home-hero { min-height: 810px; display: block; padding-top: 72px; }
	.home-hero__image { min-height: 430px; background-position: center; }
	.home-hero__copy { min-height: 380px; padding: 34px 22px 100px; }
	.home-hero__copy h1 { font-size: clamp(54px, 15vw, 72px); }
	.home-hero__copy > p:not(.section-kicker) { font-size: 17px; }
	.hero-actions { flex-wrap: wrap; }
	.hero-proof { right: 17px; left: 17px; bottom: 16px; min-height: 68px; }
	.hero-proof div { gap: 7px; padding: 10px 6px; text-align: center; font-size: 10px; }
	.mini-icon { font-size: 22px; }
	.home-statement { grid-template-columns: 1fr; gap: 20px; min-height: 430px; padding: 55px 24px; text-align: center; }
	.home-statement > p { grid-column: 1; font-size: 37px; }
	.statement-lines { display: none; }
	.statement-sketch { height: 95px; }
	.statement-sketch::before { width: 90px; height: 80px; }
	.services-cards { grid-template-columns: 1fr; gap: 12px; }
	.services-cards article { min-height: 0; }
	.green-benefits { grid-template-columns: 1fr; }
	.green-benefits__image { min-height: 360px; }
	.green-benefits__content { padding: 45px 18px; }
	.benefits-grid { grid-template-columns: 1fr 1fr; }
	.benefits-grid article { padding: 0 12px; }
	.project-showcase { grid-template-columns: 1fr; }
	.project-showcase > a { min-height: 270px; }
	.process-section { padding-top: 55px; }
	.process-track { grid-template-columns: 1fr; gap: 0; padding-block: 18px; }
	.process-track article { min-height: 125px; padding: 20px; }
	.process-track article + article::before,
	.process-track article + article::after { display: none; }
	.process-track b { margin: 0 auto 4px; }
	.post-card-grid,
	.blog-grid { grid-template-columns: 1fr; }
	.section-title-row { align-items: flex-start; flex-direction: column; gap: 12px; }
	.section-title-row h2::after { width: 38px; }
	.blog-hero { padding: 135px 0 70px; }
	.blog-hero h1 { font-size: 70px; }
	.single-hero { min-height: 620px; }
	.single-hero__content { padding-block: 150px 55px; }
	.single-hero h1 { font-size: 54px; }
	.single-meta { flex-direction: column; gap: 5px; }
	.article-layout { grid-template-columns: 1fr; gap: 35px; padding-block: 55px; }
	.article-aside { position: static; }
	.entry-content { font-size: 17px; }
	.entry-content h2 { font-size: 34px; }
	.post-navigation { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 35px; }
	.footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
	.home-hero__image { min-height: 360px; }
	.home-hero__copy h1 { font-size: 53px; }
	.hero-actions .button { flex: 1; min-width: 130px; padding-inline: 14px; }
	.home-statement > p { font-size: 32px; }
	.benefits-grid { grid-template-columns: 1fr; }
	.benefits-grid article + article::before { display: none; }
	.single-hero h1 { font-size: 45px; }
	.contact-cta h2,
	.article-cta h2 { font-size: 50px; }
}

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

