
:root {
	--ink: #171915;
	--ink-soft: #34382f;
	--cream: #f5f1ea;
	--paper: #fcfaf6;
	--white: #ffffff;
	--clay: #b65c3a;
	--clay-dark: #914328;
	--sage: #66735c;
	--line: rgba(23, 25, 21, .13);
	--muted: #696d65;
	--shadow: 0 24px 70px rgba(23, 25, 21, .14);
	--radius: 22px;
	--container: min(1240px, calc(100vw - 48px));
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p { margin: 0 0 1.2rem; }
h1, h2, h3, h4 {
	margin: 0 0 1rem;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -.035em;
}
h1 { font-size: clamp(3rem, 6.2vw, 6.3rem); }
h2 { font-size: clamp(2.35rem, 4vw, 4.4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }

::selection { background: var(--clay); color: var(--white); }

.container { width: var(--container); margin-inline: auto; }
.site-main { overflow: clip; }
.section { padding: clamp(76px, 8vw, 128px) 0; }
.section--warm { background: var(--cream); }
.section--projects { background: #eeebe4; }
.section--offer { background: var(--ink); color: var(--white); }
.section--form { background: var(--cream); }
.section--cta { padding-top: 0; background: var(--paper); }

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.sm-icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	color: var(--clay);
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}
.eyebrow::before {
	content: "";
	width: 34px;
	height: 1px;
	background: currentColor;
}
.eyebrow--light { color: rgba(255,255,255,.78); }

.button-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.button {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 52px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	font-size: .91rem;
	font-weight: 750;
	line-height: 1;
	transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button .sm-icon { transition: transform .25s ease; }
.button:hover .sm-icon { transform: translateX(4px); }
.button--primary {
	background: var(--clay);
	color: var(--white);
	box-shadow: 0 10px 28px rgba(182,92,58,.25);
}
.button--primary:hover { background: var(--clay-dark); }
.button--light { background: var(--white); color: var(--ink); }
.button--light:hover { background: var(--cream); }
.button--ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.button--ghost:hover { border-color: var(--ink); }
.button--ghost-light,
.button--outline-light { border-color: rgba(255,255,255,.45); color: var(--white); background: transparent; }
.button--ghost-light:hover,
.button--outline-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.button--compact { min-height: 44px; padding: 0 18px; font-size: .82rem; }
.button--wide { width: 100%; }
.button--whatsapp { background: #1f8b59; color: #fff; }

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 4px;
	border-bottom: 1px solid currentColor;
	font-size: .9rem;
	font-weight: 800;
}
.text-link .sm-icon { transition: transform .25s ease; }
.text-link:hover .sm-icon { transform: translateX(4px); }

/* Offer bar */
.offer-bar {
	position: relative;
	z-index: 60;
	background: var(--ink);
	color: var(--white);
	font-size: .79rem;
}
.offer-bar__inner {
	min-height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}
.offer-bar__badge {
	padding: 3px 8px;
	border-radius: 99px;
	background: var(--clay);
	font-size: .65rem;
	font-weight: 900;
	letter-spacing: .12em;
}
.offer-bar__price { color: #eeb696; font-weight: 900; }
.offer-bar a { display: inline-flex; align-items: center; gap: 6px; margin-left: 8px; font-weight: 800; }
.offer-bar a .sm-icon { width: 14px; }

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(252,250,246,.94);
	border-bottom: 1px solid rgba(23,25,21,.08);
	backdrop-filter: blur(18px);
}
.admin-bar .site-header { top: 32px; }
.site-header__inner {
	min-height: 82px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 34px;
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: max-content;
}
.brand__mark {
	display: grid;
	place-items: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--white);
}
.brand__mark svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-size: 1.04rem; letter-spacing: .11em; }
.brand__text small { margin-top: 7px; color: var(--muted); font-size: .63rem; letter-spacing: .14em; text-transform: uppercase; }
.brand__custom img { width: auto; max-height: 58px; }

.site-nav { justify-self: center; }
.site-menu,
.site-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-menu { display: flex; align-items: center; gap: 29px; }
.site-menu > li { position: relative; }
.site-menu > li > a {
	position: relative;
	display: block;
	padding: 30px 0 27px;
	font-size: .83rem;
	font-weight: 760;
}
.site-menu > li > a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 22px;
	height: 2px;
	background: var(--clay);
	transition: right .25s ease;
}
.site-menu > li:hover > a::after,
.site-menu > li.current-menu-item > a::after,
.site-menu > li.current-menu-ancestor > a::after { right: 0; }

.site-menu .sub-menu {
	position: absolute;
	top: calc(100% - 8px);
	left: -24px;
	min-width: 210px;
	padding: 12px;
	border: 1px solid var(--line);
	border-radius: 15px;
	background: var(--white);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.site-menu li:hover > .sub-menu,
.site-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.site-menu .sub-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: 9px;
	font-size: .83rem;
	font-weight: 700;
}
.site-menu .sub-menu a:hover { background: var(--cream); color: var(--clay); }

.site-header__actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: flex; align-items: center; gap: 9px; }
.header-phone > .sm-icon { width: 20px; color: var(--clay); }
.header-phone span { display: flex; flex-direction: column; font-size: .77rem; font-weight: 800; line-height: 1.25; }
.header-phone small { color: var(--muted); font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.menu-toggle {
	display: none;
	width: 45px;
	height: 45px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

/* Hero */
.hero {
	position: relative;
	min-height: min(820px, calc(100vh - 120px));
	display: grid;
	align-items: end;
	color: var(--white);
	background: var(--ink);
}
.hero__image, .hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.hero__image { object-fit: cover; object-position: center; }
.hero__shade {
	background:
		linear-gradient(90deg, rgba(13,15,12,.88) 0%, rgba(13,15,12,.7) 35%, rgba(13,15,12,.2) 67%, rgba(13,15,12,.12) 100%),
		linear-gradient(0deg, rgba(13,15,12,.55), transparent 48%);
}
.hero__inner { position: relative; z-index: 2; padding: 96px 0 78px; }
.hero__content { max-width: 770px; }
.hero h1 { max-width: 760px; color: var(--white); }
.hero__lead { max-width: 650px; margin: 0 0 34px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.6vw, 1.28rem); }
.hero__meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	max-width: 730px;
	margin-top: 70px;
	padding-top: 28px;
	border-top: 1px solid rgba(255,255,255,.25);
}
.hero__meta div { display: flex; flex-direction: column; gap: 3px; }
.hero__meta strong { font-family: Georgia, serif; font-size: 1.2rem; font-weight: 500; }
.hero__meta span { color: rgba(255,255,255,.62); font-size: .75rem; }
.hero__scroll {
	position: absolute;
	z-index: 3;
	right: 4vw;
	bottom: 36px;
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255,255,255,.35);
	border-radius: 50%;
}
.hero__scroll span {
	width: 1px;
	height: 18px;
	background: var(--white);
	animation: sm-scroll 1.7s ease-in-out infinite;
}
@keyframes sm-scroll { 0%,100% { transform: translateY(-4px); opacity:.45; } 50% { transform: translateY(4px); opacity:1; } }

/* Trust */
.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip__grid > div {
	position: relative;
	min-height: 145px;
	display: grid;
	align-content: center;
	padding: 26px 30px 24px 52px;
	border-right: 1px solid var(--line);
}
.trust-strip__grid > div:first-child { border-left: 1px solid var(--line); }
.trust-strip__number { position: absolute; top: 28px; left: 22px; color: var(--clay); font-family: Georgia, serif; font-size: .7rem; }
.trust-strip strong { display: block; margin-bottom: 7px; font-family: Georgia, serif; font-size: 1.1rem; font-weight: 500; }
.trust-strip small { color: var(--muted); font-size: .75rem; line-height: 1.55; }

/* Section heading */
.section-heading { margin-bottom: clamp(36px, 5vw, 66px); }
.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, .65fr);
	align-items: end;
	gap: 70px;
}
.section-heading--split h2 { max-width: 760px; }
.section-heading--split > p,
.section-heading--split > div:last-child > p { color: var(--muted); }
.section-heading--center { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center p:last-child { color: var(--muted); }

/* Category cards */
.category-grid {
	display: grid;
	grid-template-columns: 1.28fr .86fr .86fr;
	grid-template-rows: repeat(2, minmax(300px, 35vw));
	gap: 16px;
}
.category-grid--three { grid-template-columns: repeat(3, 1fr); grid-template-rows: none; }
.category-card {
	position: relative;
	min-height: 320px;
	overflow: hidden;
	border-radius: var(--radius);
	color: var(--white);
}
.category-card--large { grid-row: 1 / 3; }
.category-card--tall { min-height: 600px; }
.category-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.category-card:hover img { transform: scale(1.045); }
.category-card__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(13,15,12,.82), rgba(13,15,12,.05) 68%);
}
.category-card__content {
	position: absolute;
	inset: auto 0 0;
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.category-card__content small { margin-bottom: 5px; color: rgba(255,255,255,.68); font-size: .71rem; letter-spacing: .08em; text-transform: uppercase; }
.category-card__content strong { font-family: Georgia, serif; font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 500; letter-spacing: -.03em; }
.category-card__content em { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: .75rem; font-style: normal; font-weight: 800; opacity: 0; transform: translateY(6px); transition: .25s ease; }
.category-card:hover .category-card__content em { opacity: 1; transform: none; }

/* Split feature */
.split-feature {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .8fr);
	align-items: center;
	gap: clamp(50px, 8vw, 120px);
}
.split-feature__media { position: relative; }
.split-feature__media > img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--radius);
}
.split-feature__note {
	position: absolute;
	right: -38px;
	bottom: 40px;
	width: 205px;
	padding: 25px;
	border-radius: 16px;
	background: var(--ink);
	color: var(--white);
	box-shadow: var(--shadow);
}
.split-feature__note strong { display: block; font-family: Georgia, serif; font-size: 1.25rem; font-weight: 500; }
.split-feature__note span { color: rgba(255,255,255,.65); font-size: .75rem; }
.split-feature__content p:not(.eyebrow) { color: var(--muted); font-size: 1.02rem; }
.check-list { list-style: none; margin: 28px 0 34px; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.check-list .sm-icon { margin-top: 4px; color: var(--clay); }

/* Gallery */
.sm-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 300px;
	gap: 12px;
}
.sm-gallery__item {
	position: relative;
	overflow: hidden;
	padding: 0;
	border: 0;
	border-radius: 14px;
	background: #ddd8cf;
	cursor: zoom-in;
}
.sm-gallery__item:nth-child(7n + 1),
.sm-gallery__item:nth-child(7n + 5) { grid-row: span 2; }
.sm-gallery__item:nth-child(9n + 3) { grid-column: span 2; }
.sm-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.sm-gallery__item:hover img { transform: scale(1.04); }
.sm-gallery__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	padding: 18px;
	background: linear-gradient(0deg, rgba(13,15,12,.72), transparent 55%);
	color: var(--white);
	opacity: 0;
	transition: opacity .25s ease;
}
.sm-gallery__item:hover .sm-gallery__overlay,
.sm-gallery__item:focus-visible .sm-gallery__overlay { opacity: 1; }
.sm-gallery__overlay span { font-size: .76rem; font-weight: 700; }
.sm-gallery__overlay .sm-icon { width: 18px; }
.sm-gallery--featured .sm-gallery__item:nth-child(n+11) { display: none; }

/* Offer */
.offer-card {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	align-items: stretch;
	overflow: hidden;
	border-radius: 28px;
	background: #242720;
}
.offer-card__media {
	appearance: none;
	position: relative;
	min-height: 620px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
	background: #171914;
	cursor: zoom-in;
	text-align: left;
}
.offer-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.offer-card__media:hover img { transform: scale(1.025); }
.offer-card__label {
	position: absolute;
	top: 24px;
	left: 24px;
	padding: 8px 13px;
	border-radius: 999px;
	background: var(--clay);
	color: var(--white);
	font-size: .68rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.offer-card__content { padding: clamp(46px, 6vw, 86px); display: flex; flex-direction: column; justify-content: center; }
.offer-card__content .eyebrow { color: #e5a88a; }
.offer-card__content h2 { margin-bottom: 6px; }
.offer-card__size { margin: 0; color: rgba(255,255,255,.67); font-size: 1.25rem; }
.offer-card__price { margin: 22px 0; color: #efb08f; font-family: Georgia, serif; font-size: clamp(3rem, 5vw, 5rem); line-height: 1; }
.offer-card__content > p:last-of-type { color: rgba(255,255,255,.66); }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.process-grid article { min-height: 290px; padding: 36px; background: var(--paper); }
.process-grid span { display: block; margin-bottom: 65px; color: var(--clay); font-family: Georgia, serif; font-size: .8rem; }
.process-grid h3 { font-size: 1.45rem; }
.process-grid p { color: var(--muted); font-size: .83rem; }

/* Forms */
.form-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 8vw, 110px); align-items: start; }
.form-section__intro { position: sticky; top: 130px; }
.form-section__intro > p:not(.eyebrow) { color: var(--muted); }
.form-section__card { padding: clamp(28px, 5vw, 54px); border-radius: var(--radius); background: var(--white); box-shadow: 0 16px 50px rgba(23,25,21,.08); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 19px; }
.form-grid label { display: flex; flex-direction: column; gap: 7px; }
.form-grid label > span { font-size: .76rem; font-weight: 750; }
.form-grid__wide { grid-column: 1 / -1; }
.quote-form input,
.quote-form textarea,
.quote-form select {
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	border: 1px solid rgba(23,25,21,.18);
	border-radius: 10px;
	outline: none;
	background: #fff;
	color: var(--ink);
	transition: border-color .2s ease, box-shadow .2s ease;
}
.quote-form textarea { resize: vertical; }
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus { border-color: var(--clay); box-shadow: 0 0 0 3px rgba(182,92,58,.11); }
.form-consent { flex-direction: row !important; align-items: flex-start; gap: 10px !important; color: var(--muted); }
.form-consent input { width: 18px; min-height: 18px; margin: 3px 0 0; }
.form-consent span { font-size: .7rem !important; font-weight: 500 !important; }
.form-consent a { text-decoration: underline; }
.quote-form .button { margin-top: 22px; }
.quote-form .button:disabled { cursor: wait; opacity: .72; }
.quote-form .button.is-loading { pointer-events: none; }
.form-live-notice:empty { display: none; }
.form-live-notice .form-notice { margin-bottom: 20px; }
.hp-field { position: absolute; left: -9999px; }
.form-notice { margin-bottom: 20px; padding: 13px 16px; border-radius: 10px; font-size: .82rem; font-weight: 700; }
.form-notice--success { background: #e5f3e7; color: #285c32; }
.form-notice--error { background: #f8e3df; color: #8b3022; }
.contact-mini { display: grid; gap: 14px; margin-top: 30px; }
.contact-mini a { display: flex; align-items: center; gap: 13px; }
.contact-mini .sm-icon { color: var(--clay); }
.contact-mini span { display: flex; flex-direction: column; font-weight: 800; }
.contact-mini small { color: var(--muted); font-size: .65rem; font-weight: 600; text-transform: uppercase; }

/* CTA */
.cta-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	padding: clamp(38px, 5vw, 70px);
	border-radius: 24px;
	background: var(--clay);
	color: var(--white);
}
.cta-card > div:first-child { max-width: 650px; }
.cta-card .eyebrow { color: rgba(255,255,255,.75); }
.cta-card h2 { font-size: clamp(2.3rem, 4vw, 4rem); }
.cta-card p:not(.eyebrow) { margin-bottom: 0; color: rgba(255,255,255,.75); }

/* Page hero */
.page-hero {
	position: relative;
	min-height: 610px;
	display: grid;
	align-items: end;
	background-image:
		linear-gradient(90deg, rgba(13,15,12,.87), rgba(13,15,12,.33)),
		var(--page-hero);
	background-size: cover;
	background-position: center;
	color: var(--white);
}
.page-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 30%;
	background: linear-gradient(0deg, rgba(13,15,12,.38), transparent);
}
.page-hero__inner { position: relative; z-index: 1; padding: 92px 0 72px; }
.page-hero__inner > p:not(.eyebrow) { max-width: 700px; color: rgba(255,255,255,.75); font-size: 1.08rem; }
.page-hero h1 { max-width: 890px; font-size: clamp(3.5rem, 7vw, 7.3rem); }

.simple-hero { padding: clamp(90px, 11vw, 160px) 0 clamp(55px, 7vw, 95px); background: var(--cream); }
.simple-hero h1 { max-width: 900px; }
.simple-hero p:last-child { color: var(--muted); }

/* Generic content */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-grid article { padding: 34px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.benefit-grid span { color: var(--clay); font-family: Georgia, serif; font-size: .75rem; }
.benefit-grid h3 { margin-top: 58px; font-size: 1.45rem; }
.benefit-grid p { color: var(--muted); font-size: .82rem; }

.product-intro-grid {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	align-items: center;
	gap: clamp(55px, 8vw, 120px);
}
.product-intro-grid > img { width: 100%; aspect-ratio: 1.15 / 1; object-fit: cover; border-radius: var(--radius); }
.product-intro-grid > div > p:not(.eyebrow) { color: var(--muted); }

.project-sections__heading { margin-top: 110px; }

.offer-detail {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	align-items: center;
	gap: clamp(50px, 8vw, 100px);
}
.offer-detail__media img { width: 100%; border-radius: var(--radius); }
.pill {
	display: inline-flex;
	padding: 7px 12px;
	border-radius: 999px;
	background: var(--clay);
	color: var(--white);
	font-size: .66rem;
	font-weight: 900;
	letter-spacing: .12em;
}
.offer-detail__content h2 { margin-top: 22px; }
.offer-detail__size { color: var(--muted); font-size: 1.3rem; }
.offer-detail__price { margin: 20px 0; color: var(--clay); font-family: Georgia, serif; font-size: clamp(3.6rem, 7vw, 6.4rem); line-height: .9; }

/* Editable offers directory */
.offers-directory { padding-top: 92px; }
.offers-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 34px;
	max-width: 1220px;
	margin: 0 auto;
}
.offer-item {
	display: grid;
	grid-template-columns: minmax(340px, 46%) minmax(0, 1fr);
	align-items: stretch;
	scroll-margin-top: 145px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: var(--white);
	box-shadow: 0 18px 55px rgba(23,25,21,.08);
}
.offer-item--featured { border-color: rgba(196,95,58,.45); box-shadow: 0 22px 65px rgba(196,95,58,.13); }
.offer-item__media {
	appearance: none;
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 460px;
	margin: 0;
	padding: 18px;
	overflow: hidden;
	border: 0;
	border-right: 1px solid var(--line);
	background: #eee9e1;
	cursor: zoom-in;
	text-align: left;
}
.offer-item__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform .45s ease;
}
.offer-item__media:hover img,
.offer-item__media:focus-visible img { transform: scale(1.025); }
.offer-item__zoom {
	position: absolute;
	right: 18px;
	bottom: 18px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border-radius: 999px;
	background: rgba(23,25,21,.88);
	color: #fff;
	font-size: .7rem;
	font-weight: 800;
}
.offer-item__zoom .sm-icon { width: 16px; }
.offer-item__content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
	padding: clamp(32px, 5vw, 62px);
}
.offer-item__topline { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.offer-item__featured-label { color: var(--clay); font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.offer-item__content h2 { margin: 0 0 7px; font-size: clamp(2.15rem, 4vw, 3.75rem); }
.offer-item__size { margin: 0; color: var(--muted); font-size: 1.08rem; }
.offer-item__price { margin: 22px 0; color: var(--clay); font-family: Georgia, serif; font-size: clamp(3rem, 5vw, 5rem); line-height: .95; }
.offer-item__excerpt { max-width: 720px; color: var(--ink-soft); }
.offer-item__details { max-width: 760px; margin: 24px 0 30px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .86rem; }
.offer-item__details > :first-child { margin-top: 0; }
.offer-item__details > :last-child { margin-bottom: 0; }
.offer-item__details ul { margin: 0; padding: 0; list-style: none; }
.offer-item__details li { position: relative; padding: 9px 0 9px 24px; border-bottom: 1px solid var(--line); }
.offer-item__details li::before { content: "✓"; position: absolute; left: 0; color: var(--clay); font-weight: 900; }
.offer-item .button-row { margin-top: 28px; }
.offers-empty { max-width: 760px; margin: 0 auto; padding: 60px 35px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); text-align: center; }
.offers-empty p { color: var(--muted); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-grid article { min-height: 330px; display: flex; flex-direction: column; padding: 38px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.price-grid article > span { color: var(--clay); font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.price-grid h3 { margin-top: 65px; }
.price-grid p { color: var(--muted); font-size: .84rem; }
.price-grid strong { margin-top: auto; font-size: .8rem; }

.price-directory { padding-bottom: 72px; }
.price-jump-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 0 0 46px; }
.price-list-section { scroll-margin-top: 150px; }
.price-list-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 34px; }
.price-list-heading h2 { margin-bottom: 10px; }
.price-list-heading p { max-width: 680px; margin-bottom: 0; color: var(--muted); }
.price-list-heading .text-link { flex: 0 0 auto; }
.price-image-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.price-image-grid--mattress .price-sheet:last-child { grid-column: 1 / -1; max-width: calc(50% - 12px); justify-self: center; }
.price-sheet {
	appearance: none;
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: var(--white);
	box-shadow: 0 20px 50px rgba(23,25,21,.08);
	cursor: zoom-in;
	text-align: left;
	transition: transform .25s ease, box-shadow .25s ease;
}
.price-sheet:hover { transform: translateY(-5px); box-shadow: 0 28px 70px rgba(23,25,21,.14); }
.price-sheet img { display: block; width: 100%; height: auto; }
.price-sheet span {
	position: absolute;
	right: 16px;
	bottom: 16px;
	padding: 9px 13px;
	border-radius: 999px;
	background: rgba(23,25,21,.9);
	color: var(--white);
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .04em;
}
.price-note { max-width: 900px; margin: 30px auto 0; padding: 16px 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.65); color: var(--muted); font-size: .82rem; text-align: center; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-cards > a {
	min-height: 230px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: var(--white);
	transition: transform .25s ease, box-shadow .25s ease;
}
.contact-cards > a:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(23,25,21,.08); }
.contact-cards .sm-icon { width: 25px; color: var(--clay); }
.contact-cards span { display: flex; flex-direction: column; min-width: 0; }
.contact-cards small { color: var(--muted); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-cards strong { margin: 18px 0 8px; font-family: Georgia, serif; font-size: 1.2rem; font-weight: 500; overflow-wrap: anywhere; }
.contact-cards em { color: var(--muted); font-size: .73rem; font-style: normal; }

.map-section iframe { display: block; width: 100%; height: 520px; border: 0; }

.legal-content { max-width: 850px; }
.legal-content h2 { margin-top: 48px; font-size: 2rem; }
.legal-content p { color: var(--ink-soft); }
.legal-note { margin-top: 42px; padding: 22px; border-left: 4px solid var(--clay); background: var(--cream); }

.entry-content { max-width: 860px; }
.entry-content a { color: var(--clay); text-decoration: underline; }
.entry-content img { border-radius: 16px; }
.single-project { max-width: 920px; }
.single-project__image img { width: 100%; margin-bottom: 40px; border-radius: var(--radius); }

/* Footer */
.site-footer { padding: 84px 0 0; background: var(--ink); color: var(--white); }
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.25fr .65fr .65fr 1.1fr;
	gap: 60px;
	padding-bottom: 70px;
}
.brand--footer .brand__mark { background: var(--white); color: var(--ink); }
.brand--footer .brand__text small { color: rgba(255,255,255,.5); }
.footer-brand > p { max-width: 350px; margin-top: 24px; color: rgba(255,255,255,.58); font-size: .83rem; }
.footer-social { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.footer-social a { color: rgba(255,255,255,.72); font-size: .74rem; font-weight: 750; }
.site-footer h3 { margin-bottom: 24px; font-family: inherit; font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin: 9px 0; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .8rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--white); }
.footer-contact > a,
.footer-contact > p { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 13px; color: rgba(255,255,255,.72); font-size: .78rem; }
.footer-contact .sm-icon { margin-top: 2px; color: #e9a484; }
.footer-contact > small { display: block; margin-top: 18px; color: rgba(255,255,255,.48); }
.legal-badges { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.legal-badges img { width: auto; max-width: 110px; max-height: 42px; }
.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 0;
	border-top: 1px solid rgba(255,255,255,.1);
	color: rgba(255,255,255,.42);
	font-size: .69rem;
}

/* Floating whatsapp */
.floating-whatsapp {
	position: fixed;
	z-index: 40;
	right: 22px;
	bottom: 22px;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 12px 16px;
	border-radius: 999px;
	background: #1f8b59;
	color: #fff;
	box-shadow: 0 12px 35px rgba(18,80,51,.32);
	font-size: .75rem;
	font-weight: 800;
}
.floating-whatsapp .sm-icon { width: 22px; fill: none; }

/* Modal */
.modal,
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 100;
	visibility: hidden;
	opacity: 0;
	transition: opacity .25s ease, visibility .25s ease;
}
.modal.is-open,
.lightbox.is-open { visibility: visible; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(12,14,11,.72); backdrop-filter: blur(8px); }
.modal__dialog {
	position: absolute;
	top: 0;
	right: 0;
	width: min(680px, 100%);
	height: 100%;
	overflow-y: auto;
	background: var(--paper);
	transform: translateX(100%);
	transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.modal.is-open .modal__dialog { transform: translateX(0); }
.modal__close {
	position: sticky;
	z-index: 2;
	top: 18px;
	float: right;
	display: grid;
	place-items: center;
	width: 43px;
	height: 43px;
	margin: 18px 18px 0 0;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--white);
	cursor: pointer;
}
.modal__content { padding: 80px clamp(24px, 7vw, 70px) 55px; }
.modal__content > p:not(.eyebrow) { color: var(--muted); }
.modal__content .quote-form { margin-top: 35px; }

.lightbox { background: rgba(8,9,8,.94); }
.lightbox__stage { position: absolute; inset: 0; display: grid; place-items: center; padding: 55px; cursor: zoom-out; }
.lightbox__stage img { max-width: min(90vw, 1100px); max-height: 84vh; border-radius: 8px; box-shadow: 0 30px 100px #000; object-fit: contain; }
.lightbox__stage p { position: absolute; bottom: 14px; color: rgba(255,255,255,.65); font-size: .75rem; }
.lightbox__close {
	position: absolute;
	z-index: 2;
	top: 22px;
	right: 22px;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 50%;
	background: transparent;
	color: #fff;
	cursor: pointer;
}

/* WordPress */
.alignwide { width: min(1100px, 100%); margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption-text { color: var(--muted); font-size: .76rem; }
.pagination { margin-top: 40px; }

/* Responsive */
@media (max-width: 1160px) {
	.site-header__inner { gap: 20px; }
	.site-menu { gap: 19px; }
	.header-phone { display: none; }
	.sm-gallery { grid-template-columns: repeat(3, 1fr); }
	.site-footer__grid { grid-template-columns: 1.2fr .7fr .7fr; }
	.footer-contact { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, 1fr); }
	.footer-contact h3,
	.footer-contact small,
	.legal-badges { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
	:root { --container: min(100% - 32px, 760px); }
	.admin-bar .site-header { top: 46px; }
	.site-header__inner { min-height: 72px; grid-template-columns: auto auto; justify-content: space-between; }
	.menu-toggle { display: grid; place-items: center; }
	.site-header__actions { display: none; }
	.site-nav {
		position: fixed;
		top: var(--header-mobile-top, 110px);
		left: 0;
		right: 0;
		max-height: calc(100vh - 110px);
		overflow-y: auto;
		padding: 18px 24px 28px;
		border-top: 1px solid var(--line);
		background: var(--paper);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: .22s ease;
	}
	.site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
	.site-menu { display: block; }
	.site-menu > li > a { padding: 15px 0; border-bottom: 1px solid var(--line); font-family: Georgia, serif; font-size: 1.4rem; font-weight: 500; }
	.site-menu > li > a::after { display: none; }
	.site-menu .sub-menu {
		position: static;
		display: block;
		min-width: 0;
		padding: 4px 0 10px 18px;
		border: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}
	.site-menu .sub-menu a { padding: 7px 0; color: var(--muted); }
	.hero { min-height: 760px; }
	.hero__shade { background: linear-gradient(90deg, rgba(13,15,12,.88), rgba(13,15,12,.45)); }
	.hero__meta { gap: 16px; }
	.trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
	.trust-strip__grid > div:nth-child(odd) { border-left: 1px solid var(--line); }
	.category-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 420px); }
	.category-card--large { grid-row: span 2; }
	.category-grid--three { grid-template-columns: 1fr; grid-template-rows: none; }
	.category-card--tall { min-height: 540px; }
	.split-feature { grid-template-columns: 1fr; }
	.split-feature__media { max-width: 650px; }
	.split-feature__note { right: 20px; }
	.sm-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 290px; }
	.offer-card { grid-template-columns: 1fr; }
	.offer-card__media { min-height: 480px; }
	.process-grid,
	.benefit-grid { grid-template-columns: repeat(2, 1fr); }
	.form-section { grid-template-columns: 1fr; }
	.form-section__intro { position: static; max-width: 650px; }
	.cta-card { align-items: flex-start; flex-direction: column; }
	.product-intro-grid,
	.offer-detail { grid-template-columns: 1fr; }
	.offer-item { grid-template-columns: 1fr; }
	.offer-item__media { min-height: 0; aspect-ratio: 16 / 10; border-right: 0; border-bottom: 1px solid var(--line); }
	.price-grid,
	.contact-cards { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.footer-brand { grid-column: 1 / -1; }
	.footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
	:root { --container: calc(100% - 24px); }
	body { font-size: 15px; }
	.section { padding: 72px 0; }
	h1 { font-size: clamp(2.8rem, 15vw, 4.2rem); }
	h2 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
	.offer-bar__inner { min-height: 44px; gap: 7px; justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
	.offer-bar__inner::-webkit-scrollbar { display: none; }
	.offer-bar a { margin-left: auto; }
	.offer-bar__badge { display: none; }
	.offer-item__media { aspect-ratio: 4 / 3; padding: 10px; }
	.offer-item__content { padding: 28px 22px 32px; }
	.site-header__inner { min-height: 68px; }
	.brand__mark { width: 39px; height: 39px; }
	.brand__text strong { font-size: .89rem; }
	.brand__text small { display: none; }
	.hero { min-height: calc(100svh - 112px); }
	.hero__image { object-position: 47% center; }
	.hero__inner { padding: 78px 0 54px; }
	.hero__lead { font-size: 1rem; }
	.hero__meta { grid-template-columns: 1fr; gap: 12px; margin-top: 45px; }
	.hero__meta div { display: grid; grid-template-columns: 110px 1fr; align-items: center; }
	.hero__scroll { display: none; }
	.trust-strip__grid { grid-template-columns: 1fr; }
	.trust-strip__grid > div { min-height: 118px; border-left: 1px solid var(--line); }
	.section-heading--split { grid-template-columns: 1fr; gap: 18px; }
	.category-grid { display: flex; flex-direction: column; }
	.category-card,
	.category-card--large,
	.category-card--tall { min-height: 440px; }
	.category-card__content em { opacity: 1; transform: none; }
	.split-feature__note { right: 12px; bottom: 12px; width: 180px; }
	.sm-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; gap: 7px; }
	.sm-gallery__item:nth-child(9n + 3) { grid-column: auto; }
	.sm-gallery__overlay { opacity: 1; padding: 11px; }
	.sm-gallery__overlay span { display: none; }
	.offer-card__media { min-height: 330px; }
	.offer-card__content { padding: 36px 24px; }
	.offer-item__content { padding: 28px 20px; }
	.offer-item__zoom span { display: none; }
	.offer-item__price { font-size: 3rem; }
	.process-grid,
	.benefit-grid { grid-template-columns: 1fr; }
	.process-grid article { min-height: 240px; }
	.process-grid span { margin-bottom: 42px; }
	.form-grid { grid-template-columns: 1fr; }
	.form-grid__wide { grid-column: auto; }
	.form-section__card { padding: 25px 18px; }
	.page-hero { min-height: 600px; }
	.page-hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
	.product-intro-grid { gap: 38px; }
	.price-grid article { min-height: 280px; padding: 28px; }
	.contact-cards > a { min-height: 190px; padding: 28px; }
	.map-section iframe { height: 400px; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 44px; }
	.footer-brand,
	.footer-contact { grid-column: auto; display: block; }
	.site-footer__bottom { flex-direction: column; gap: 5px; }
	.floating-whatsapp span { display: none; }
	.floating-whatsapp { width: 52px; height: 52px; padding: 0; justify-content: center; }
	.modal__content { padding-top: 70px; }
	.lightbox__stage { padding: 44px 10px; }
}

@media (prefers-reduced-motion: no-preference) {
	.will-reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
	.will-reveal.is-revealed { opacity: 1; transform: none; }
}

@media (max-width: 760px) {
	.price-directory { padding-bottom: 52px; }
	.price-list-section { scroll-margin-top: 120px; }
	.price-list-heading { align-items: flex-start; flex-direction: column; margin-bottom: 24px; }
	.price-image-grid { grid-template-columns: 1fr; gap: 18px; }
	.price-image-grid--mattress .price-sheet:last-child { grid-column: auto; max-width: none; }
	.price-sheet { border-radius: 14px; }
	.price-sheet span { right: 10px; bottom: 10px; }
}
