.site-shell {
	width: min(100%, 90rem);
	min-height: 100vh;
	margin-inline: auto;
	overflow: hidden;
	background: var(--ronches-warm-white);
}

.site-container {
	width: min(100% - 2rem, 81rem);
	margin-inline: auto;
}

.content-container {
	max-width: 52rem;
}

.content-container--wide {
	max-width: 68rem;
}

.section {
	padding-block: clamp(3.5rem, 8vw, 6rem);
}

.site-header {
	position: relative;
	z-index: 20;
	border-bottom: 2px solid rgb(95 111 80 / 24%);
	background: rgb(255 253 248 / 97%);
}

.site-header__inner {
	display: flex;
	min-height: 5.7rem;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 0.7rem;
}

.site-branding {
	display: flex;
	min-width: 0;
	flex: 1 1 auto;
	align-items: center;
	gap: 0.8rem;
}

.custom-logo-link {
	display: block;
	flex: 0 0 auto;
}

.custom-logo {
	width: 5rem;
	height: 5rem;
	clip-path: circle(43.5% at 50% 50%);
	object-fit: cover;
	filter: drop-shadow(0 6px 8px rgb(74 55 40 / 14%));
}

.site-branding__text {
	min-width: 0;
}

.site-title {
	margin: 0;
	font-family: var(--ronches-font-heading);
	font-size: clamp(1.05rem, 3vw, 1.35rem);
	font-weight: 600;
	line-height: 1.15;
}

.site-title a {
	color: var(--ronches-brown);
	text-decoration: none;
}

.site-description {
	display: none;
	margin: 0.15rem 0 0;
	color: var(--ronches-brown-soft);
	font-size: 0.78rem;
}

.nav-toggle {
	display: none;
	align-items: center;
	gap: 0.55rem;
	padding: 0.62rem 0.8rem;
	border: 1px solid var(--ronches-border);
	border-radius: 999px;
	background: var(--ronches-cream);
	color: var(--ronches-brown);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
	display: block;
	width: 1.1rem;
	height: 2px;
	background: currentcolor;
	content: "";
}

.nav-toggle__icon {
	position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
	position: absolute;
	left: 0;
}

.nav-toggle__icon::before {
	top: -0.35rem;
}

.nav-toggle__icon::after {
	top: 0.35rem;
}

.site-navigation {
	display: block;
	width: 100%;
	padding: 0.7rem;
	border: 1px solid var(--ronches-border);
	border-radius: var(--ronches-radius-small);
	background: var(--ronches-warm-white);
	box-shadow: var(--ronches-shadow);
}

.has-js .nav-toggle {
	display: inline-flex;
}

.has-js .site-navigation {
	display: none;
	position: absolute;
	top: 100%;
	right: 1rem;
	left: 1rem;
	width: auto;
}

.has-js .site-navigation.is-open {
	display: block;
}

.site-menu,
.footer-menu,
.footer-navigation__menu {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-menu {
	flex-direction: column;
}

.site-menu a {
	display: block;
	padding: 0.62rem 0.78rem;
	border-radius: 0.4rem;
	color: var(--ronches-link);
	font-family: var(--ronches-font-body);
	font-size: 1rem;
	text-decoration: none;
}

.site-menu a:hover,
.site-menu .current-menu-item > a,
.site-menu .current_page_item > a {
	color: var(--ronches-sage-dark);
}

.site-menu a:hover {
	background: var(--ronches-cream);
}

.site-menu .current-menu-item > a,
.site-menu .current_page_item > a {
	border-radius: 0;
	box-shadow: inset 0 -1px var(--ronches-taupe);
}

.home .site-menu .current-menu-item > a {
	box-shadow: none;
	color: var(--ronches-link);
}

.home .site-menu > li:first-child > a {
	box-shadow: inset 0 -1px var(--ronches-taupe);
	color: var(--ronches-sage-dark);
}

.site-footer {
	position: relative;
	margin-top: 0;
	border-top: 3px solid var(--ronches-sage);
	background:
		radial-gradient(circle at 50% 45%, rgb(255 253 248 / 54%), transparent 42%),
		linear-gradient(135deg, #f0eadf, var(--ronches-sage-wash));
	color: var(--ronches-brown);
}

.site-footer__inner {
	display: grid;
	gap: 0;
	padding-block: 1.5rem 0.35rem;
}

.footer-column {
	min-width: 0;
	padding: 1.25rem 0;
	border-bottom: 1px solid rgb(185 165 142 / 38%);
}

.footer-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
}

.footer-brand .custom-logo {
	width: 5.9rem;
	height: 5.9rem;
}

.site-footer__name {
	max-width: 13rem;
	margin: 0 0 0.2rem;
	font-family: var(--ronches-font-heading);
	font-size: 1.8rem;
	line-height: 1.05;
}

.footer-brand p:last-child {
	margin: 0;
	font-size: 0.7rem;
	font-weight: 700;
}

.footer-contact {
	font-style: normal;
}

.footer-contact p {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 0.45rem;
	font-size: 0.8rem;
}

.footer-contact .icon {
	width: 1.15rem;
	height: 1.15rem;
	color: var(--ronches-brown-soft);
}

.footer-contact a {
	color: var(--ronches-link);
	font-weight: 800;
	text-decoration-line: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
}

.footer-social > p {
	margin-bottom: 0.6rem;
	font-size: 0.8rem;
	font-weight: 700;
}

.social-links {
	display: flex;
	gap: 0.55rem;
}

.social-links a {
	display: grid;
	width: 2.45rem;
	height: 2.45rem;
	place-items: center;
	border-radius: 50%;
	background: var(--ronches-sage-dark);
	color: var(--ronches-warm-white);
}

.social-links .dashicons {
	width: 1.3rem;
	height: 1.3rem;
	font-size: 1.3rem;
	line-height: 1;
}

.social-links .icon {
	width: 1.3rem;
	height: 1.3rem;
	fill: currentcolor;
	stroke: none;
	vertical-align: 0;
}

.footer-navigation__title {
	margin-bottom: 0.55rem;
	font-size: 0.8rem;
	font-weight: 700;
}

.footer-navigation__menu {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.28rem 0.9rem;
}

.footer-navigation__menu a {
	display: block;
	color: var(--ronches-link);
	font-size: 0.74rem;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
}

.footer-navigation__menu a:hover,
.footer-navigation__menu .current-menu-item > a,
.footer-navigation__menu .current_page_item > a {
	color: var(--ronches-link-hover);
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem 1.5rem;
	padding-block: 0.75rem;
	border-top: 1px solid rgb(185 165 142 / 36%);
	font-size: 0.68rem;
}

.site-footer__bottom p {
	margin: 0;
	font-weight: 700;
}

.site-footer__credit {
	display: inline-flex;
	align-items: center;
	gap: 0.28rem;
	color: var(--ronches-brown-soft);
	white-space: nowrap;
}

.site-footer__credit-icon {
	display: inline-grid;
	place-items: center;
	color: #9b5f5f;
}

.site-footer__credit-icon .icon {
	width: 1rem;
	height: 1rem;
	stroke-width: 1.8;
	vertical-align: 0;
}

.site-footer__credit a {
	color: var(--ronches-link);
	font-weight: 800;
	text-decoration-line: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
}

.site-footer__credit a:hover {
	text-decoration: underline;
}

.footer-menu {
	flex-wrap: wrap;
	gap: 0.8rem 1.2rem;
}

.footer-menu a,
.site-footer__bottom > a {
	color: var(--ronches-link);
	font-weight: 800;
	text-decoration-line: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
}

.footer-contact a:hover,
.footer-menu a:hover,
.site-footer__credit a:hover {
	color: var(--ronches-link-hover);
}

.archive-header,
.entry-header {
	max-width: 52rem;
	margin-bottom: clamp(2rem, 6vw, 4rem);
}

.entry-overview {
	display: grid;
	align-items: start;
	gap: 1.5rem;
	margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

@media (max-width: 67.99rem) {
	.site-footer__inner {
		text-align: center;
	}

	.footer-column {
		align-items: center;
	}

	.footer-brand {
		justify-content: center;
	}

	.footer-contact p,
	.social-links,
	.footer-menu,
	.footer-navigation__menu {
		justify-content: center;
	}

	.footer-navigation__title {
		text-align: center;
	}

	.footer-navigation__menu {
		margin-inline: auto;
	}

	.site-footer__bottom {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
}

@media (max-width: 35.99rem) {
	.has-js .site-header__inner {
		flex-wrap: nowrap;
		gap: 0.5rem;
	}

	.custom-logo {
		width: 4.3rem;
		height: 4.3rem;
	}

	.site-branding {
		gap: 0.55rem;
	}

	.site-title {
		font-size: clamp(0.92rem, 4vw, 1.05rem);
	}

	.nav-toggle {
		flex: 0 0 auto;
		padding: 0.55rem 0.68rem;
	}
}

@media (min-width: 42rem) {
	.site-description {
		display: block;
	}

	.site-footer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-column {
		padding-inline: 1.5rem;
	}
}

@media (min-width: 58rem) {
	.entry-overview {
		grid-template-columns: minmax(0, 1.4fr) minmax(17rem, 0.6fr);
	}
}

@media (min-width: 68rem) {
	.has-js .nav-toggle {
		display: none;
	}

	.site-navigation,
	.has-js .site-navigation {
		display: block;
		position: static;
		width: auto;
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.site-menu {
		flex-direction: row;
		align-items: center;
		gap: clamp(0rem, 0.55vw, 0.5rem);
	}

	.site-menu a {
		padding-inline: clamp(0.45rem, 0.6vw, 0.78rem);
		font-size: clamp(0.9rem, 1.25vw, 1rem);
	}

	.site-header__inner {
		min-height: 6.7rem;
		padding-left: 12.2rem;
	}

	.site-branding--has-logo .custom-logo-link {
		position: absolute;
		top: 0.80rem;
		left: max(1rem, calc((100% - 81rem) / 2));
		z-index: 4;
	}

	.site-branding--has-logo .custom-logo {
		width: 12rem;
		height: 12rem;
	}

	.site-branding--has-logo .site-branding__text {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
	}

	.site-footer__inner {
		grid-template-columns: 1.35fr 1.15fr 0.8fr 1.4fr;
		align-items: stretch;
	}

	.footer-column {
		display: flex;
		position: relative;
		min-height: 6.8rem;
		flex-direction: column;
		justify-content: center;
		padding: 0.25rem 2rem;
		border-bottom: 0;
		border-left: 0;
	}

	.footer-column:first-child {
		padding-left: 0;
	}

	.footer-column:not(:first-child)::before {
		position: absolute;
		top: 16%;
		bottom: 16%;
		left: 0;
		border-left: 1px solid rgb(185 165 142 / 45%);
		content: "";
	}

	.footer-brand {
		flex-direction: row;
		text-align: left;
	}

	.footer-social {
		align-items: center;
	}

	.footer-navigation {
		align-items: flex-start;
	}

	.site-footer__bottom {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
		column-gap: 1.5rem;
		padding-inline: 0;
	}

	.site-footer__bottom > p:first-child {
		grid-column: 1;
		justify-self: start;
	}

	.site-footer__bottom > nav {
		grid-column: 2;
		justify-self: center;
	}

	.site-footer__credit {
		grid-column: 3;
		justify-self: end;
	}

	.site-footer__bottom .footer-menu {
		justify-content: center;
		white-space: nowrap;
	}

}

@media (min-width: 92rem) {
	.site-shell {
		margin-block: 1rem;
		border-radius: 0.5rem;
		box-shadow: 0 14px 48px rgb(74 55 40 / 18%);
	}
}
