/*
Theme Name: ARESA Arquitectura y Construcción
Theme URI: https://aresaconstrucciones.mx
Author: ARESA
Author URI: https://aresaconstrucciones.mx
Description: Tema corporativo ligero para ARESA, con identidad grafito y terracota, portafolio de proyectos y contacto por WhatsApp.
Version: 1.0.0
Requires at least: 6.5
Tested up to: 7.1
Requires PHP: 8.1
Text Domain: aresa
*/

:root {
	--graphite-950: #151a1c;
	--graphite-900: #202629;
	--graphite-800: #2c3437;
	--graphite-700: #414b4f;
	--terracotta-700: #93402f;
	--terracotta-600: #b45138;
	--terracotta-500: #c96549;
	--terracotta-300: #e6a28c;
	--sand-300: #d9cbbb;
	--sand-200: #e9dfd2;
	--sand-100: #f5eee5;
	--cream: #fffaf4;
	--white: #ffffff;
	--ink: #1d2426;
	--muted: #626b6e;
	--line: rgba(32, 38, 41, 0.15);
	--shell: min(1180px, calc(100% - 48px));
	--shadow: 0 24px 60px rgba(21, 26, 28, 0.16);
	--font-sans: "Montserrat", Arial, sans-serif;
	--font-serif: "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
	top: 32px;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

button,
input,
textarea,
select {
	font: inherit;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	line-height: 1.1;
}

.site-shell {
	width: var(--shell);
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 10000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--white);
	color: var(--graphite-900);
}

.site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	background: var(--sand-100);
	box-shadow: 0 1px 0 rgba(32, 38, 41, 0.12);
}

.utility-bar {
	background: var(--graphite-950);
	color: #f4ede5;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.utility-bar__inner {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding-block: 8px;
}

.nav-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 88px;
	gap: 32px;
}

.brand {
	display: inline-flex;
	align-items: center;
	width: 235px;
	text-decoration: none;
}

.brand img,
.brand .custom-logo {
	width: 100%;
	max-height: 62px;
	object-fit: contain;
	object-position: left center;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 32px;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list a {
	position: relative;
	color: var(--graphite-900);
	font-size: 0.77rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-nav__list a::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 2px;
	background: var(--terracotta-600);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.site-nav__list a:hover::after,
.site-nav__list a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nav-toggle {
	display: none;
	align-items: center;
	gap: 12px;
	border: 0;
	background: transparent;
	color: var(--graphite-900);
	cursor: pointer;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nav-toggle__icon {
	display: grid;
	width: 24px;
	gap: 5px;
}

.nav-toggle__icon i {
	display: block;
	height: 2px;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:first-child {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:last-child {
	transform: translateY(-7px) rotate(-45deg);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 14px 24px;
	border: 1px solid var(--terracotta-600);
	background: var(--terracotta-600);
	color: var(--white);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
	border-color: var(--terracotta-700);
	background: var(--terracotta-700);
	transform: translateY(-2px);
}

.button--small {
	min-height: 42px;
	padding: 12px 18px;
	font-size: 0.7rem;
}

.button--light {
	border-color: var(--cream);
	background: var(--cream);
	color: var(--graphite-900);
}

.button--light:hover,
.button--light:focus-visible {
	border-color: var(--graphite-900);
	background: var(--graphite-900);
	color: var(--white);
}

.section {
	padding-block: 112px;
}

.section-light {
	background: var(--cream);
}

.section-sand {
	background: var(--sand-100);
}

.section-dark {
	background: var(--graphite-900);
	color: var(--white);
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	color: var(--terracotta-700);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.eyebrow::before {
	display: inline-block;
	width: 30px;
	height: 2px;
	background: currentColor;
	content: "";
}

.eyebrow--light {
	color: var(--terracotta-300);
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
	align-items: end;
	gap: 80px;
	margin-bottom: 58px;
}

.section-heading--compact {
	grid-template-columns: 1fr;
}

.section-heading h2,
.project-feature h2,
.contact-cta h2 {
	margin-bottom: 0;
	font-family: var(--font-serif);
	font-size: clamp(2.1rem, 4.2vw, 4rem);
	font-weight: 600;
	letter-spacing: -0.035em;
}

.section-heading > p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 0.98rem;
}

.hero {
	position: relative;
	overflow: hidden;
	min-height: 720px;
	background:
		linear-gradient(105deg, rgba(21, 26, 28, 0.98) 0%, rgba(32, 38, 41, 0.95) 56%, rgba(32, 38, 41, 0.78) 100%),
		repeating-linear-gradient(90deg, transparent 0, transparent 98px, rgba(255, 255, 255, 0.025) 99px, transparent 100px);
}

.hero::after {
	position: absolute;
	right: -80px;
	bottom: -160px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(230, 162, 140, 0.22);
	content: "";
	transform: rotate(28deg);
}

.hero__mark {
	position: absolute;
	top: -105px;
	left: -28px;
	color: rgba(255, 255, 255, 0.025);
	font-family: var(--font-serif);
	font-size: 560px;
	font-weight: 600;
	line-height: 1;
	user-select: none;
}

.hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
	align-items: center;
	gap: 78px;
	min-height: 720px;
	padding-block: 86px;
}

.hero h1 {
	max-width: 760px;
	margin-bottom: 26px;
	font-family: var(--font-serif);
	font-size: clamp(3.2rem, 6.2vw, 6.4rem);
	font-weight: 600;
	letter-spacing: -0.052em;
}

.hero__lead {
	max-width: 650px;
	margin-bottom: 34px;
	color: #d8ddde;
	font-size: 1.04rem;
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 28px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.text-link span {
	font-size: 1.15rem;
	transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
	transform: translate(3px, -3px);
}

.text-link--light {
	color: var(--white);
}

.hero__proof {
	display: flex;
	gap: 34px;
	margin: 54px 0 0;
	padding: 22px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	color: #c8cecf;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	list-style: none;
	text-transform: uppercase;
}

.hero__proof li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.hero__proof li::before {
	width: 5px;
	height: 5px;
	background: var(--terracotta-300);
	content: "";
}

.hero-project {
	position: relative;
	filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.28));
}

.hero-project__frame {
	position: relative;
	overflow: hidden;
	min-height: 460px;
	background: #d6caba;
}

.hero-project__frame::before {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent 52%, rgba(32, 38, 41, 0.2));
	content: "";
}

.hero-project__ceiling {
	position: absolute;
	top: -70px;
	right: -10px;
	left: -10px;
	height: 190px;
	background: var(--graphite-800);
	clip-path: polygon(0 0, 100% 0, 100% 46%, 0 100%);
}

.hero-project__wall {
	position: absolute;
	top: 125px;
	right: 48px;
	left: 48px;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 10px;
	padding: 55px 20px 62px;
	background: #f4eee6;
	box-shadow: 0 24px 50px rgba(32, 38, 41, 0.14);
}

.hero-project__go {
	color: var(--terracotta-600);
	font-size: 4.2rem;
	font-weight: 800;
	letter-spacing: -0.08em;
	line-height: 1;
}

.hero-project__pharmacy {
	color: var(--graphite-900);
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.hero-project__counter {
	position: absolute;
	right: -8%;
	bottom: -28px;
	left: 12%;
	height: 130px;
	background: var(--terracotta-600);
	clip-path: polygon(8% 0, 100% 16%, 100% 100%, 0 100%);
}

.hero-project__lines {
	position: absolute;
	right: 38px;
	bottom: 38px;
	display: flex;
	gap: 10px;
}

.hero-project__lines i {
	display: block;
	width: 8px;
	height: 62px;
	background: rgba(255, 255, 255, 0.3);
	transform: skew(-12deg);
}

.hero-project__caption {
	display: grid;
	grid-template-columns: 42px 1fr;
	align-items: start;
	gap: 16px;
	padding: 22px 24px;
	background: var(--terracotta-600);
	color: var(--white);
}

.hero-project__caption > span {
	font-family: var(--font-serif);
	font-size: 1.45rem;
	font-style: italic;
}

.hero-project__caption strong,
.hero-project__caption small {
	display: block;
}

.hero-project__caption strong {
	margin-bottom: 4px;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-project__caption small {
	color: #f4ddd5;
	font-size: 0.7rem;
}

.service-ribbon {
	overflow: hidden;
	background: var(--terracotta-600);
	color: var(--white);
}

.service-ribbon__track {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 3vw, 48px);
	min-width: max-content;
	padding: 15px 28px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.service-ribbon__track i {
	width: 4px;
	height: 4px;
	background: var(--sand-100);
	transform: rotate(45deg);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid var(--line);
}

.service-card {
	position: relative;
	min-height: 350px;
	padding: 38px;
	border-right: 1px solid var(--line);
	background: var(--sand-100);
}

.service-card:last-child {
	border-right: 0;
}

.service-card--accent {
	background: var(--graphite-900);
	color: var(--white);
}

.service-card__number {
	display: block;
	margin-bottom: 74px;
	color: var(--terracotta-700);
	font-family: var(--font-serif);
	font-size: 1.3rem;
	font-style: italic;
}

.service-card--accent .service-card__number {
	color: var(--terracotta-300);
}

.service-card h3 {
	margin-bottom: 18px;
	font-family: var(--font-serif);
	font-size: 2rem;
	font-weight: 600;
}

.service-card p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 0.9rem;
}

.service-card--accent p {
	color: #cfd4d5;
}

.service-card__line {
	position: absolute;
	right: 38px;
	bottom: 38px;
	left: 38px;
	height: 3px;
	background: var(--terracotta-600);
	transform: scaleX(0.22);
	transform-origin: left;
	transition: transform 250ms ease;
}

.service-card:hover .service-card__line {
	transform: scaleX(1);
}

.project-feature {
	padding-block: 120px;
}

.project-feature__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
	align-items: center;
	gap: 94px;
}

.project-feature__visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 560px;
	background:
		linear-gradient(125deg, rgba(201, 101, 73, 0.9), rgba(147, 64, 47, 0.84)),
		repeating-linear-gradient(90deg, transparent 0, transparent 62px, rgba(255, 255, 255, 0.12) 63px, transparent 64px);
	box-shadow: var(--shadow);
}

.project-feature__visual::before {
	position: absolute;
	inset: 34px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	content: "";
}

.project-feature__monogram {
	color: rgba(255, 255, 255, 0.94);
	font-size: clamp(6rem, 12vw, 11rem);
	font-weight: 800;
	letter-spacing: -0.1em;
	line-height: 1;
}

.project-feature__tag {
	position: absolute;
	top: 0;
	left: 0;
	padding: 13px 18px;
	background: var(--sand-100);
	color: var(--graphite-900);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.project-feature__detail {
	position: absolute;
	right: 58px;
	bottom: 56px;
	display: flex;
	gap: 11px;
}

.project-feature__detail i {
	display: block;
	width: 7px;
	height: 84px;
	background: rgba(255, 255, 255, 0.25);
	transform: skew(-14deg);
}

.project-feature__copy > p:not(.eyebrow) {
	margin: 30px 0 40px;
	color: #cfd5d6;
}

.scope-list {
	margin: 0 0 40px;
	padding: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	list-style: none;
}

.scope-list li {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 12px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.scope-list span {
	color: var(--terracotta-300);
	font-family: var(--font-serif);
	font-style: italic;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.project-card {
	background: var(--white);
	box-shadow: 0 12px 34px rgba(32, 38, 41, 0.08);
}

.project-card__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--graphite-900);
	text-decoration: none;
}

.project-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
}

.project-card:hover .project-card__image img {
	transform: scale(1.035);
}

.project-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: rgba(255, 255, 255, 0.06);
	font-family: var(--font-serif);
	font-size: 13rem;
}

.project-card__body {
	padding: 28px;
}

.project-card__body h3 {
	margin-bottom: 12px;
	font-family: var(--font-serif);
	font-size: 1.75rem;
}

.project-card__body h3 a {
	text-decoration: none;
}

.project-card__body p:last-child {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 0.88rem;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--line);
	list-style: none;
}

.process-grid li {
	position: relative;
	padding: 34px 26px 8px 0;
}

.process-grid li::before {
	position: absolute;
	top: -4px;
	left: 0;
	width: 8px;
	height: 8px;
	background: var(--terracotta-600);
	content: "";
}

.process-grid span {
	display: block;
	margin-bottom: 64px;
	color: var(--terracotta-700);
	font-family: var(--font-serif);
	font-size: 1.2rem;
	font-style: italic;
}

.process-grid h3 {
	margin-bottom: 14px;
	font-size: 1rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.process-grid p {
	margin: 0;
	color: var(--muted);
	font-size: 0.85rem;
}

.contact-cta {
	position: relative;
	overflow: hidden;
	padding-block: 112px;
	background: var(--terracotta-600);
	color: var(--white);
}

.contact-cta__mark {
	position: absolute;
	right: -20px;
	top: -120px;
	color: rgba(255, 255, 255, 0.055);
	font-family: var(--font-serif);
	font-size: 520px;
	line-height: 1;
}

.contact-cta__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 410px;
	align-items: center;
	gap: 90px;
}

.contact-cta h2 {
	max-width: 760px;
}

.contact-card {
	padding: 34px;
	background: var(--graphite-900);
	box-shadow: var(--shadow);
}

.contact-card p {
	color: #d5dadb;
	font-size: 0.9rem;
}

.contact-card .button {
	width: 100%;
	margin: 12px 0 24px;
}

.contact-card__email,
.contact-card__phone,
.contact-card small {
	display: block;
	word-break: break-word;
}

.contact-card__email {
	color: var(--terracotta-300);
	font-size: 0.84rem;
	font-weight: 700;
}

.contact-card__phone {
	margin-top: 4px;
	font-size: 0.82rem;
}

.contact-card small {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	color: #afb7b8;
}

.site-footer {
	padding-top: 70px;
	background: var(--graphite-950);
	color: #d9ddde;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 0.8fr 0.7fr;
	gap: 64px;
}

.site-footer__brand img {
	width: 215px;
	margin-bottom: 24px;
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

.site-footer__brand p {
	max-width: 380px;
	color: #aeb5b7;
	font-size: 0.85rem;
}

.footer-heading {
	margin-bottom: 18px;
	color: var(--terracotta-300);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

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

.footer-list li {
	margin-bottom: 9px;
	color: #bfc5c6;
	font-size: 0.78rem;
}

.footer-list a {
	text-decoration: none;
}

.footer-list a:hover,
.footer-list a:focus-visible {
	color: var(--white);
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 56px;
	padding-block: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: #919a9c;
	font-size: 0.64rem;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.whatsapp-float {
	position: fixed;
	z-index: 90;
	right: 24px;
	bottom: 24px;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 2px solid var(--cream);
	border-radius: 50%;
	background: #168b51;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
	color: var(--white);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	text-decoration: none;
	transition: transform 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
	transform: translateY(-3px) scale(1.03);
}

.content-hero {
	padding: 90px 0 70px;
	background: var(--graphite-900);
	color: var(--white);
}

.content-hero h1 {
	max-width: 900px;
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(2.8rem, 6vw, 5.5rem);
	font-weight: 600;
	letter-spacing: -0.04em;
}

.content-area {
	padding-block: 86px;
}

.entry-content {
	max-width: 830px;
	font-size: 1rem;
}

.entry-content > * {
	margin-bottom: 1.5em;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.8em;
	font-family: var(--font-serif);
}

.entry-content h2 {
	font-size: 2.2rem;
}

.entry-content a {
	color: var(--terracotta-700);
}

.archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.pagination {
	margin-top: 50px;
}

.error-404 {
	padding-block: 120px;
	text-align: center;
}

.error-404 strong {
	display: block;
	color: var(--terracotta-600);
	font-family: var(--font-serif);
	font-size: 8rem;
	line-height: 1;
}

.reveal {
	opacity: 1;
	transform: none;
}

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

.js .reveal.is-visible {
	opacity: 1;
	transform: none;
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}

	.js .reveal {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 1080px) {
	.site-nav__list {
		gap: 18px;
	}

	.site-nav {
		gap: 20px;
	}

	.hero__grid {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 44px;
	}

	.project-feature__grid {
		gap: 56px;
	}

	.site-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}
}

@media (max-width: 900px) {
	:root {
		--shell: min(100% - 36px, 740px);
	}

	body.admin-bar .site-header {
		top: 46px;
	}

	.utility-bar__inner span:last-child {
		display: none;
	}

	.nav-row {
		min-height: 78px;
	}

	.brand {
		width: 205px;
	}

	.nav-toggle {
		display: flex;
	}

	.site-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		align-items: stretch;
		padding: 28px max(18px, calc((100% - 740px) / 2));
		background: var(--sand-100);
		box-shadow: 0 18px 34px rgba(32, 38, 41, 0.14);
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__list {
		display: grid;
		gap: 0;
		margin-bottom: 22px;
	}

	.site-nav__list li {
		border-bottom: 1px solid var(--line);
	}

	.site-nav__list a {
		display: block;
		padding: 13px 0;
	}

	.site-nav .button {
		width: 100%;
	}

	.section,
	.project-feature,
	.contact-cta {
		padding-block: 86px;
	}

	.hero,
	.hero__grid {
		min-height: auto;
	}

	.hero__grid {
		grid-template-columns: 1fr;
		padding-block: 74px;
	}

	.hero-project {
		max-width: 600px;
	}

	.section-heading,
	.project-feature__grid,
	.contact-cta__grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.services-grid,
	.projects-grid,
	.archive-grid {
		grid-template-columns: 1fr 1fr;
	}

	.service-card {
		border-bottom: 1px solid var(--line);
	}

	.service-card:last-child {
		grid-column: 1 / -1;
		border-bottom: 0;
	}

	.process-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px 24px;
	}

	.contact-cta__grid {
		grid-template-columns: 1fr;
	}

	.contact-card {
		max-width: 520px;
	}
}

@media (max-width: 620px) {
	:root {
		--shell: calc(100% - 28px);
	}

	.utility-bar__inner {
		justify-content: center;
	}

	.utility-bar__inner span:first-child {
		font-size: 0.62rem;
	}

	.brand {
		width: 176px;
	}

	.nav-toggle__label {
		display: none;
	}

	.section,
	.project-feature,
	.contact-cta {
		padding-block: 68px;
	}

	.hero h1 {
		font-size: clamp(2.9rem, 14.5vw, 4.4rem);
	}

	.hero__actions {
		align-items: stretch;
		flex-direction: column;
		gap: 18px;
	}

	.hero__actions .text-link {
		align-self: flex-start;
	}

	.hero__proof {
		flex-wrap: wrap;
		gap: 14px 24px;
	}

	.hero-project__frame {
		min-height: 390px;
	}

	.hero-project__wall {
		right: 24px;
		left: 24px;
	}

	.hero-project__go {
		font-size: 3.4rem;
	}

	.hero-project__pharmacy {
		font-size: 0.64rem;
	}

	.section-heading {
		margin-bottom: 42px;
	}

	.services-grid,
	.projects-grid,
	.archive-grid,
	.process-grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: 300px;
		border-right: 0;
	}

	.service-card:last-child {
		grid-column: auto;
	}

	.project-feature__visual {
		min-height: 420px;
	}

	.process-grid {
		gap: 34px;
	}

	.process-grid span {
		margin-bottom: 30px;
	}

	.contact-card {
		padding: 28px 22px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.whatsapp-float {
		right: 16px;
		bottom: 16px;
	}
}

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