:root {
	--black: #0d0d0d;
	--charcoal: #1a1a1a;
	--panel: #242424;
	--silver: #bdbdbd;
	--white: #ffffff;
	--gold: #d4af37;
	--blue: #007bff;
	--line: rgba(255, 255, 255, 0.12);
	--shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
	--radius: 8px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--black);
	color: #f4f4f4;
	font-family: Inter, "Open Sans", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

img,
iframe {
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

h1,
h2,
h3 {
	margin: 0 0 16px;
	color: var(--white);
	font-family: Montserrat, Poppins, Inter, sans-serif;
	line-height: 1.05;
	letter-spacing: 0;
}

h1 {
	max-width: 820px;
	font-size: clamp(42px, 7vw, 86px);
}

h2 {
	font-size: clamp(30px, 4vw, 54px);
}

h3 {
	font-size: 22px;
}

p {
	margin: 0 0 18px;
	color: #d7d7d7;
}

.container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.narrow {
	width: min(860px, calc(100% - 40px));
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 12px;
	z-index: 1000;
	padding: 10px 14px;
	background: var(--gold);
	color: var(--black);
}

.skip-link:focus {
	left: 12px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(13, 13, 13, 0.84);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(18px);
}

.nav-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	gap: 28px;
}

.brand {
	flex: 0 0 auto;
	max-width: 210px;
	overflow: hidden;
}

.brand .site-logo-link,
.brand .custom-logo-link {
	display: flex;
	align-items: center;
	max-width: 100%;
}

.site-logo {
	display: block;
	width: clamp(128px, 16vw, 180px);
	max-height: 58px;
	height: auto;
	object-fit: contain;
}

.custom-logo-link img {
	display: block;
	width: clamp(128px, 16vw, 180px);
	max-height: 58px;
	height: auto;
	object-fit: contain;
}

.main-navigation {
	display: flex;
	align-items: center;
	gap: 24px;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu a {
	display: inline-flex;
	padding: 10px 14px;
	color: #eeeeee;
	font-weight: 700;
	font-size: 14px;
	transition: color 180ms ease, background 180ms ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
	color: var(--gold);
}

.nav-cta,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-weight: 800;
	line-height: 1;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta,
.button-primary {
	background: linear-gradient(135deg, #ff4a0d, var(--gold));
	color: var(--black);
	box-shadow: 0 12px 30px rgba(212, 175, 55, 0.22);
}

.button-ghost {
	border-color: rgba(255, 255, 255, 0.22);
	color: var(--white);
	background: rgba(255, 255, 255, 0.06);
}

.nav-cta:hover,
.btn:hover {
	transform: translateY(-2px);
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px auto;
	background: var(--white);
}

.section,
.stats-band,
.cta-band {
	padding: 64px 0;
}

.section-dark {
	position: relative;
	background: var(--black);
	overflow: hidden;
}

.section-muted {
	background: #121212;
}

.hero-section {
	min-height: 620px;
	display: grid;
	align-items: center;
	padding: 88px 0 56px;
}

.hero-media,
.page-hero::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(13, 13, 13, 0.96) 0%, rgba(13, 13, 13, 0.72) 42%, rgba(13, 13, 13, 0.38) 100%),
		url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-media::after,
.page-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 45%;
	background: linear-gradient(0deg, var(--black), rgba(13, 13, 13, 0));
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-content .site-logo {
	width: min(280px, 68vw);
	max-height: none;
	margin-bottom: 20px;
}

.eyebrow {
	display: inline-flex;
	margin-bottom: 12px;
	color: var(--gold);
	font-weight: 900;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hero-copy,
.page-hero p {
	max-width: 650px;
	font-size: 20px;
	color: #eeeeee;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.hero-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.hero-highlights span,
.process-steps span {
	display: inline-flex;
	padding: 10px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	font-weight: 800;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 28px;
}

.feature-grid,
.service-grid,
.stats-grid,
.team-grid,
.mini-grid {
	display: grid;
	gap: 18px;
}

.feature-grid {
	grid-template-columns: repeat(3, 1fr);
}

.service-grid {
	grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.service-card,
.team-card,
.post-card,
.contact-panel,
.contact-form,
.blog-sidebar,
.testimonial {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
	box-shadow: var(--shadow);
}

.feature-card,
.service-card {
	padding: 22px;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover,
.service-card:hover,
.team-card:hover {
	transform: translateY(-4px);
	border-color: rgba(212, 175, 55, 0.45);
}

.card-icon,
.service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 20px;
	border: 1px solid rgba(212, 175, 55, 0.38);
	border-radius: var(--radius);
	color: var(--gold);
	font-weight: 900;
	background: rgba(212, 175, 55, 0.08);
}

.service-card a,
.post-body a,
.article-content a {
	color: var(--gold);
	font-weight: 800;
}

.stats-band {
	background:
		linear-gradient(90deg, rgba(13, 13, 13, 0.96), rgba(13, 13, 13, 0.76)),
		url("https://images.unsplash.com/photo-1530046339160-ce3e530c7d2f?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.stats-grid {
	grid-template-columns: repeat(4, 1fr);
	text-align: center;
}

.stats-grid strong {
	display: block;
	color: var(--white);
	font-family: Montserrat, sans-serif;
	font-size: clamp(38px, 5vw, 64px);
	line-height: 1;
}

.stats-grid span {
	color: var(--silver);
	font-weight: 800;
}

.testimonial-slider {
	position: relative;
	min-height: 310px;
}

.testimonial {
	display: none;
	max-width: 780px;
	margin: 0 auto;
	padding: 28px;
	text-align: center;
}

.testimonial.is-active {
	display: block;
	animation: fadeUp 420ms ease both;
}

.avatar {
	display: grid;
	place-items: center;
	width: 68px;
	height: 68px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold), #ff4a0d);
	color: var(--black);
	font-weight: 900;
}

.stars {
	color: var(--gold);
	letter-spacing: 0.12em;
}

blockquote {
	margin: 0 0 18px;
	color: var(--white);
	font-size: 22px;
	line-height: 1.45;
}

cite {
	color: var(--silver);
	font-style: normal;
	font-weight: 800;
}

.cta-band {
	background: linear-gradient(135deg, #101010, #252525 55%, #3d310c);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.cta-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.page-hero {
	padding: 104px 0 68px;
}

.page-hero .container {
	position: relative;
	z-index: 2;
}

.split-grid,
.contact-grid,
.blog-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	align-items: start;
}

.image-panel,
.team-photo,
.service-image,
.post-image {
	min-height: 340px;
	border-radius: var(--radius);
	background: #222 center / cover;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.workshop-image,
.team-photo.one {
	background-image: url("https://images.unsplash.com/photo-1599256872237-5dcc0fbe9668?auto=format&fit=crop&w=1200&q=80");
}

.team-photo.two {
	background-image: url("https://images.unsplash.com/photo-1613214149922-f1809c99b414?auto=format&fit=crop&w=900&q=80");
}

.team-photo.three {
	background-image: url("https://images.unsplash.com/photo-1605515298946-d062f2e9da53?auto=format&fit=crop&w=900&q=80");
}

.mini-grid {
	grid-template-columns: repeat(2, 1fr);
	margin-top: 28px;
}

.mini-grid div {
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.05);
}

.mini-grid strong,
.mini-grid span {
	display: block;
}

.timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.timeline.stacked {
	grid-template-columns: 1fr;
	margin-bottom: 24px;
}

.timeline div {
	padding: 20px;
	border-left: 2px solid var(--gold);
	background: rgba(255, 255, 255, 0.045);
}

.timeline span {
	color: var(--gold);
	font-weight: 900;
}

.team-grid {
	grid-template-columns: repeat(3, 1fr);
}

.pricing-grid,
.gallery-grid,
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.pricing-card,
.gallery-card,
.review-card {
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
	box-shadow: var(--shadow);
}

.pricing-card.featured {
	border-color: rgba(212, 175, 55, 0.55);
	background: linear-gradient(180deg, rgba(212, 175, 55, 0.16), rgba(255, 255, 255, 0.045));
}

.price {
	color: var(--white);
	font-family: Montserrat, sans-serif;
	font-size: 34px;
	font-weight: 900;
	line-height: 1.1;
}

.gallery-card {
	padding: 0;
	overflow: hidden;
}

.gallery-card h2,
.gallery-card p {
	padding: 0 24px;
}

.gallery-card h2 {
	margin-top: 22px;
	font-size: 22px;
}

.gallery-card p {
	padding-bottom: 24px;
}

.gallery-image {
	min-height: 260px;
	background:
		linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45)),
		url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=900&q=80") center / cover;
}

.gallery-image.image-2,
.gallery-image.image-5 {
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45)),
		url("https://images.unsplash.com/photo-1613214149922-f1809c99b414?auto=format&fit=crop&w=900&q=80");
}

.gallery-image.image-3,
.gallery-image.image-6 {
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45)),
		url("https://images.unsplash.com/photo-1605515298946-d062f2e9da53?auto=format&fit=crop&w=900&q=80");
}

.gallery-image.image-4,
.gallery-image.image-7,
.gallery-image.image-8 {
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45)),
		url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=900&q=80");
}

.testimonial-grid .testimonial,
.review-card {
	display: block;
	max-width: none;
	margin: 0;
	text-align: left;
}

.testimonial-grid blockquote {
	font-size: 20px;
}

.team-card {
	overflow: hidden;
}

.team-card h3,
.team-card p {
	padding: 0 24px;
}

.team-card p {
	padding-bottom: 24px;
}

.team-photo {
	min-height: 300px;
	margin-bottom: 24px;
	border: 0;
	border-radius: 0;
}

.service-detail-list {
	display: grid;
	gap: 34px;
}

.service-detail {
	display: grid;
	grid-template-columns: 0.82fr 1fr;
	gap: 24px;
	align-items: center;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.04);
}

.service-image {
	min-height: 300px;
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62)),
		url("https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?auto=format&fit=crop&w=1200&q=80");
}

.check-list {
	padding: 0;
	margin: 22px 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 10px;
	color: #eeeeee;
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 14px;
	height: 2px;
	background: var(--gold);
}

.check-list.two-column {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px 18px;
}

.process-steps {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 22px 0;
}

.accordion details {
	margin-bottom: 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.05);
}

.accordion summary {
	cursor: pointer;
	padding: 18px 20px;
	color: var(--white);
	font-weight: 900;
}

.accordion p {
	padding: 0 20px 20px;
}

.contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	padding: 22px;
}

.contact-form label,
.search-form label {
	display: grid;
	gap: 8px;
	color: var(--white);
	font-weight: 800;
}

.contact-form .full {
	grid-column: 1 / -1;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	background: rgba(0, 0, 0, 0.35);
	color: var(--white);
	padding: 13px 14px;
	font: inherit;
}

textarea {
	resize: vertical;
}

.form-status {
	grid-column: 1 / -1;
	margin: 0;
	color: var(--gold);
	font-weight: 800;
}

.contact-panel {
	padding: 24px;
}

.map-embed {
	height: 180px;
	overflow: hidden;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: var(--charcoal);
}

.map-embed.large {
	height: 260px;
	margin-top: 18px;
}

.map-embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.blog-layout {
	grid-template-columns: minmax(0, 1fr) 330px;
	align-items: start;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.blog-main {
	min-width: 0;
}

.post-card {
	overflow: hidden;
}

.post-image {
	display: block;
	min-height: 230px;
	background-image: url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1000&q=80");
}

.post-image img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	display: block;
}

.post-body,
.blog-sidebar {
	padding: 24px;
}

.post-body h2 {
	margin-bottom: 12px;
	font-size: clamp(22px, 2vw, 28px);
	line-height: 1.18;
}

.post-body p {
	font-size: 15px;
	line-height: 1.65;
}

.blog-sidebar {
	position: sticky;
	top: 104px;
}

.blog-sidebar h2 {
	margin: 28px 0 12px;
	font-size: 18px;
	line-height: 1.2;
	color: var(--white);
}

.blog-sidebar h2:first-of-type {
	margin-top: 0;
}

.sidebar-list {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.sidebar-list li {
	margin: 0;
	color: var(--silver);
	font-size: 14px;
	line-height: 1.35;
	font-weight: 700;
}

.sidebar-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 42px;
	padding: 10px 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.04);
	color: #eeeeee;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
	transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.sidebar-list a:hover {
	border-color: rgba(212, 175, 55, 0.42);
	background: rgba(212, 175, 55, 0.08);
	color: var(--gold);
}

.blog-pagination {
	grid-column: 1 / -1;
	margin-top: 28px;
}

.blog-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 10px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.05);
	color: var(--white);
	font-weight: 900;
	line-height: 1;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
	border-color: rgba(212, 175, 55, 0.48);
	background: var(--gold);
	color: var(--black);
}

.search-form {
	margin-bottom: 28px;
}

.article-content {
	max-width: 840px;
	padding: 48px 0;
}

.article-content img {
	border-radius: var(--radius);
}

.cms-page-content > :first-child {
	margin-top: 0;
}

.cms-page-content > :last-child {
	margin-bottom: 0;
}

.cms-page-content {
	width: 100%;
	max-width: none;
	overflow-x: hidden;
}

.cms-page-content > .section,
.cms-page-content > .page-hero,
.cms-page-content > .cta-band,
.cms-page-content > .stats-band {
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.cms-page-content .container,
.cms-page-content .narrow {
	width: min(1180px, calc(100% - 40px));
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}

.cms-page-content .article-content {
	width: min(860px, calc(100% - 40px));
	max-width: 860px;
}

.split-grid,
.contact-grid,
.blog-layout,
.service-detail,
.pricing-grid,
.gallery-grid,
.testimonial-grid,
.feature-grid,
.service-grid,
.stats-grid,
.team-grid,
.timeline,
.mini-grid,
.footer-grid,
.post-grid {
	min-width: 0;
}

.split-grid > *,
.contact-grid > *,
.blog-layout > *,
.service-detail > *,
.pricing-grid > *,
.gallery-grid > *,
.testimonial-grid > *,
.feature-grid > *,
.service-grid > *,
.stats-grid > *,
.team-grid > *,
.timeline > *,
.mini-grid > *,
.footer-grid > *,
.post-grid > * {
	min-width: 0;
}

.cms-page-content > p,
.cms-page-content > h1,
.cms-page-content > h2,
.cms-page-content > h3,
.cms-page-content > ul,
.cms-page-content > ol,
.cms-page-content > .wp-block-buttons {
	width: min(860px, calc(100% - 40px));
	margin-left: auto;
	margin-right: auto;
}

.cms-page-content > p:first-child,
.cms-page-content > h1:first-child,
.cms-page-content > h2:first-child {
	margin-top: 48px;
}

.cms-page-content > p:last-child,
.cms-page-content > ul:last-child,
.cms-page-content > ol:last-child {
	margin-bottom: 48px;
}

.site-footer {
	background: #080808;
	border-top: 1px solid var(--line);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.7fr 0.8fr 1.1fr;
	gap: 34px;
	padding: 48px 0;
}

.site-footer h2 {
	font-size: 18px;
	margin-bottom: 18px;
}

.footer-brand .site-logo {
	width: 210px;
	max-height: none;
	margin-bottom: 18px;
}

.footer-links,
.footer-contact {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-links li,
.footer-contact li {
	margin-bottom: 10px;
	color: #d7d7d7;
}

.social-links {
	display: flex;
	gap: 10px;
}

.social-links a {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--gold);
	font-weight: 900;
}

.social-links svg,
.whatsapp-float svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.footer-bottom {
	padding: 18px 20px;
	border-top: 1px solid var(--line);
	text-align: center;
}

.footer-bottom p {
	margin: 0;
	font-size: 14px;
}

.whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 920;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25d366;
	color: var(--black);
	font-weight: 900;
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.whatsapp-float svg {
	width: 30px;
	height: 30px;
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 980px) {
	.menu-toggle {
		display: block;
	}

	.main-navigation {
		position: absolute;
		left: 20px;
		right: 20px;
		top: calc(100% + 10px);
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 18px;
		border: 1px solid var(--line);
		border-radius: var(--radius);
		background: rgba(13, 13, 13, 0.98);
		box-shadow: var(--shadow);
	}

	.main-navigation.is-open {
		display: flex;
	}

	.primary-menu {
		flex-direction: column;
		align-items: stretch;
	}

	.primary-menu a,
	.nav-cta {
		width: 100%;
	}

	.feature-grid,
	.service-grid,
	.stats-grid,
	.timeline,
	.team-grid,
	.pricing-grid,
	.gallery-grid,
	.testimonial-grid,
	.footer-grid,
	.post-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.split-grid,
	.contact-grid,
	.blog-layout,
	.service-detail {
		grid-template-columns: 1fr;
	}

	.blog-sidebar {
		position: static;
	}

	.hero-section {
		min-height: 560px;
	}

	.cta-content {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	.container,
	.narrow,
	.cms-page-content .container,
	.cms-page-content .narrow,
	.cms-page-content .article-content {
		width: min(100% - 28px, 1180px);
	}

	.nav-shell {
		min-height: 68px;
	}

	.site-logo,
	.custom-logo-link img {
		width: 132px;
		max-height: 48px;
	}

	.hero-section {
		min-height: 520px;
		padding: 72px 0 42px;
	}

	.section,
	.stats-band,
	.cta-band {
		padding: 42px 0;
	}

	.page-hero {
		padding: 78px 0 46px;
	}

	.hero-copy,
	.page-hero p {
		font-size: 18px;
	}

	.feature-grid,
	.service-grid,
	.stats-grid,
	.timeline,
	.team-grid,
	.pricing-grid,
	.gallery-grid,
	.testimonial-grid,
	.footer-grid,
	.post-grid,
	.mini-grid,
	.check-list.two-column,
	.contact-form {
		grid-template-columns: 1fr;
	}

	.post-grid {
		gap: 16px;
	}

	.post-body,
	.blog-sidebar {
		padding: 20px;
	}

	.blog-pagination .nav-links {
		justify-content: center;
	}

	.contact-form .full,
	.form-status {
		grid-column: auto;
	}

	.hero-actions,
	.btn,
	.nav-cta {
		width: 100%;
	}

	.image-panel,
	.service-image {
		min-height: 220px;
	}

	.service-detail,
	.contact-form,
	.contact-panel {
		padding: 20px;
	}

	.footer-grid {
		padding: 34px 0;
	}

	.cms-page-content > p,
	.cms-page-content > h1,
	.cms-page-content > h2,
	.cms-page-content > h3,
	.cms-page-content > ul,
	.cms-page-content > ol,
	.cms-page-content > .wp-block-buttons {
		width: min(100% - 28px, 860px);
	}

	.cms-page-content > p:first-child,
	.cms-page-content > h1:first-child,
	.cms-page-content > h2:first-child {
		margin-top: 32px;
	}

	.cms-page-content > p:last-child,
	.cms-page-content > ul:last-child,
	.cms-page-content > ol:last-child {
		margin-bottom: 32px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	* {
		animation-duration: 1ms !important;
		transition-duration: 1ms !important;
	}
}
