@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/DMSerifDisplay-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "DM Serif Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/DMSerifDisplay-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Manrope-400.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Manrope-500.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Manrope-600.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Manrope-700.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/Manrope-800.ttf") format("truetype");
}
/**
 * Mesa de obra: sistema visual calizo, grafito, Verde Umbral y terracota; composición editorial asimétrica, sin contenedores que comprometan la cabecera sticky.
 */

:root {
  --ink: #1d2625;
  --muted: #65706b;
  --limestone: #f3f0e9;
  --paper: #fbfaf7;
  --green: #0e5a4b;
  --green-dark: #0a4238;
  --terra: #c45d3f;
  --line: #d9d5ca;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: 0.23;
  pointer-events: none;
  background-image: radial-gradient(#605d5633 0.55px, transparent 0.55px);
  background-size: 7px 7px;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
h1 em,
h2 em {
  color: var(--green);
  font-weight: 400;
}
::selection {
  background: #c9dcd4;
}
.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.section-pad {
  padding: 112px 0;
}
.section-pad--tight {
  padding-top: 72px;
}
.section-kicker,
.tile-meta {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green);
}
.section-kicker--light {
  color: #c2ded5;
}
.mini-stamp {
  display: inline-block;
  border: 1px solid currentColor;
  padding: 5px 7px 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.sale-strip {
  background: var(--terra);
  color: #fff7f0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.sale-strip__inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sale-strip__eyebrow {
  margin-right: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
}
.sale-strip__link {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-weight: 800;
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.site-header__inner {
  height: 77px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--serif);
  font-size: 39px;
  letter-spacing: -0.06em;
  line-height: 1;
}
.brand__mark {
  width: 43.5px;
  height: 43.5px;
  object-fit: contain;
}
.brand__dot {
  color: var(--terra);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
}
.main-nav__link {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  color: #4c5652;
  position: relative;
  padding: 29px 0 28px;
}
.main-nav__link::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terra);
  transition: width 0.18s ease-out;
}
.main-nav__link:hover::after,
.main-nav__link.is-active::after {
  width: 100%;
}
.main-nav__link.is-active {
  color: var(--ink);
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 9px;
}
.header-search {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  transition: background 0.18s ease-out;
}
.header-search:hover {
  background: var(--limestone);
}
.header-cta {
  background: var(--green);
  color: white;
  padding: 10px 13px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
}
.header-cta span {
  font-size: 15px;
}
.mobile-menu {
  display: none;
  border: 0;
  background: transparent;
  padding: 7px;
}
.hero {
  min-height: 674px;
  position: relative;
  color: white;
  display: flex;
  align-items: stretch;
  background: #25322e;
}
.hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 27, 22, 0.9) 0%,
    rgba(11, 27, 22, 0.72) 36%,
    rgba(11, 27, 22, 0.05) 72%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 103px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero__eyebrow span {
  width: 24px;
  height: 1px;
  background: currentColor;
}
.hero h1 {
  max-width: 700px;
  margin-top: 23px;
  font-size: clamp(64px, 8.2vw, 112px);
  color: #fffaf2;
}
.hero h1 em {
  color: #cbded5;
}
.hero__content > p {
  max-width: 455px;
  margin-top: 30px;
  color: #edf1e8;
  font-size: 17px;
  line-height: 1.65;
}
.hero__actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 47px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 800;
  transition:
    transform 0.16s ease-out,
    background 0.16s ease-out;
}
.button:active {
  transform: scale(0.97);
}
.button--light {
  background: #fffaf2;
  color: var(--ink);
}
.button--light:hover {
  background: #e4eee6;
}
.button--dark {
  background: var(--green);
  color: white;
}
.button--dark:hover {
  background: var(--green-dark);
}
.text-button,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
}
.text-button--light {
  color: white;
  border-bottom: 1px solid #ffffff99;
  padding-bottom: 4px;
}
.inline-link {
  color: var(--green);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.hero__meter {
  margin-top: auto;
  width: min(515px, 100%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #e0e5dc;
}
.hero__meter div {
  height: 1px;
  background: #b5c5bb;
}
.hero__note {
  position: absolute;
  z-index: 1;
  right: 3.2vw;
  bottom: 35px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  color: #fffdf7;
  letter-spacing: 0.03em;
}
.intro-block {
  background: var(--paper);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 11vw;
  align-items: end;
}
.intro-grid h2,
.section-head h2 {
  margin-top: 17px;
  font-size: clamp(42px, 5.2vw, 68px);
}
.intro-grid__copy {
  border-left: 1px solid var(--line);
  padding-left: 30px;
  color: #46504c;
  font-size: 16px;
}
.intro-grid__copy .inline-link {
  margin-top: 22px;
}
.decision-area {
  background: var(--limestone);
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
}
.section-head__caption {
  max-width: 280px;
  font-size: 13px;
  color: var(--muted);
}
.round-link {
  width: 51px;
  height: 51px;
  flex: 0 0 51px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: white;
  border-radius: 50%;
  transition:
    transform 0.18s ease-out,
    background 0.18s ease-out;
}
.round-link:hover {
  background: var(--terra);
  transform: rotate(-28deg);
}
.decision-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  margin-top: 48px;
}
.start-card {
  min-height: 358px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.18s ease-out;
}
.start-card:hover {
  transform: translateY(-5px);
}
.start-card--green {
  color: #eff4ec;
  background: var(--green);
}
.start-card--stone {
  background: #e6e0d4;
  color: var(--ink);
}
.start-card--terracotta {
  background: var(--terra);
  color: #fff7f0;
}
.start-card__number {
  position: absolute;
  right: 22px;
  top: 20px;
  font-family: var(--serif);
  font-size: 20px;
  opacity: 0.58;
}
.start-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  margin-top: 28px;
}
.start-card p {
  max-width: 250px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.84;
}
.start-card > span {
  margin-top: auto;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}
.hammer-mark {
  height: 39px;
  width: 42px;
  position: relative;
}
.hammer-mark span {
  position: absolute;
  background: currentColor;
}
.hammer-mark span:first-child {
  width: 35px;
  height: 7px;
  left: 0;
  top: 0;
}
.hammer-mark span:nth-child(2) {
  width: 7px;
  height: 31px;
  left: 15px;
  top: 4px;
}
.hammer-mark span:last-child {
  width: 15px;
  height: 6px;
  left: 0;
  bottom: 0;
}
.tools-band {
  background: #dfe9e2;
}
.tools-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 10vw;
  align-items: center;
}
.tools-copy h2 {
  margin: 16px 0 23px;
  font-size: clamp(42px, 5vw, 65px);
}
.tools-copy > p {
  max-width: 500px;
  font-size: 16px;
  line-height: 1.7;
  color: #4e5d56;
  margin-bottom: 25px;
}
.calculator-preview {
  background: var(--paper);
  box-shadow: 11px 11px 0 #8ba69b;
  padding: 27px;
  min-height: 326px;
  transform: rotate(1deg);
}
.preview-top,
.preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calculator-preview h3 {
  margin-top: 46px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}
.calculator-preview p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  max-width: 335px;
}
.range-line {
  display: flex;
  gap: 7px;
  margin: 39px 0 20px;
}
.range-line span {
  display: block;
  height: 7px;
  flex: 1;
  background: var(--line);
}
.range-line span:first-child,
.range-line span:nth-child(2) {
  background: var(--green);
}
.preview-footer {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
}
.preview-footer span:last-child {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
}
.rooms-section {
  background: var(--paper);
}
.room-layout {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 14px;
  margin-top: 48px;
}
.room-feature {
  min-height: 480px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.room-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.room-feature:hover img {
  transform: scale(1.04);
}
.room-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 19, 16, 0.83), transparent 62%);
}
.room-feature__overlay {
  position: absolute;
  z-index: 1;
  bottom: 31px;
  left: 31px;
  right: 31px;
  color: white;
}
.room-feature__overlay .tile-meta {
  color: #ddcba9;
}
.room-feature h3 {
  margin: 11px 0 17px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 39px;
  line-height: 1.04;
  max-width: 480px;
}
.room-feature span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
}
.room-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.decision-tile {
  min-height: 230px;
  padding: 21px;
  background: #f0ede6;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.18s ease-out,
    background 0.18s ease-out;
}
.decision-tile:hover {
  background: #e3ece6;
  transform: translateY(-4px);
}
.decision-tile__top {
  display: flex;
  justify-content: space-between;
  color: var(--green);
}
.tile-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #9eb5ab;
}
.decision-tile h3,
.read-card h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: 10px;
}
.decision-tile p:not(.tile-meta),
.read-card p:not(.tile-meta) {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 8px;
}
.decision-tile .tile-meta {
  margin-top: auto;
  order: 4;
  padding-top: 18px;
  color: var(--green);
  font-size: 9px;
}
.steps-section {
  background: var(--ink);
  color: #eff4ec;
  padding: 100px 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10vw;
}
.steps-grid h2 {
  margin-top: 17px;
  color: white;
  font-size: clamp(44px, 5vw, 66px);
}
.steps-grid h2 em {
  color: #b9d3c8;
}
.steps-list {
  border-top: 1px solid #ffffff33;
}
.step {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 21px;
  padding: 21px 0;
  border-bottom: 1px solid #ffffff33;
}
.step > span {
  color: #bcd5c8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
}
.step h3 {
  font-size: 17px;
  font-weight: 800;
}
.step p {
  color: #c1c9c4;
  font-size: 13px;
  margin-top: 3px;
}
.reads-section {
  background: #e9e4d8;
}
.reads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 47px;
  border-top: 1px solid #c9c0ae;
}
.read-card {
  padding: 26px 26px 28px 0;
  min-height: 294px;
  position: relative;
  border-right: 1px solid #c9c0ae;
  transition:
    background 0.18s ease-out,
    padding 0.18s ease-out;
}
.read-card:not(:first-child) {
  padding-left: 26px;
}
.read-card:hover {
  background: #f4f0e6;
}
.read-card__index {
  position: absolute;
  right: 20px;
  top: 22px;
  font-family: var(--serif);
  font-size: 22px;
  color: #8a887f;
}
.read-card__icon {
  color: var(--terra);
}
.read-card h3 {
  max-width: 280px;
  font-size: 29px;
  margin-top: 18px;
}
.read-card .inline-link {
  margin-top: 18px;
  font-size: 11px;
}
.join-band {
  background: var(--terra);
  color: #fff8f2;
  padding: 74px 0;
}
.join-band__inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 8vw;
  align-items: end;
}
.join-band .section-kicker {
  color: #ffe4d5;
}
.join-band h2 {
  margin-top: 13px;
  font-size: clamp(35px, 4.2vw, 57px);
  color: white;
}
.join-band h2 em {
  color: #ffe0bb;
}
.join-band p:not(.section-kicker) {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #fff0e8;
}
.site-footer {
  background: #112e29;
  color: #e7eee8;
}
.footer-top {
  padding: 74px 0 54px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 12vw;
}
.brand--footer {
  color: white;
}
.footer-brand > p {
  color: #bfcfc7;
  margin: 16px 0 19px;
  max-width: 230px;
  font-size: 13px;
}
.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #e4c497;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-label {
  color: #d2e5dc;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 6px;
}
.footer-links a {
  color: #c2cec8;
  font-size: 12px;
}
.footer-links a:hover {
  color: #fff5e7;
}
.footer-links a svg {
  vertical-align: middle;
}
.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid #ffffff22;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #a8b7b0;
}
.breadcrumbs {
  padding-top: 24px;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}
.breadcrumbs a:hover {
  color: var(--green);
}
.breadcrumbs--light {
  color: #c5d3ce;
}
.breadcrumbs--light a:hover {
  color: white;
}
.section-hero {
  background: #f0ede6;
  padding-bottom: 82px;
}
.section-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.83fr;
  gap: 8vw;
  align-items: center;
  padding-top: 62px;
}
.hero__eyebrow--ink {
  color: var(--green);
}
.section-hero h1 {
  max-width: 645px;
  margin-top: 20px;
  font-size: clamp(56px, 6.8vw, 88px);
}
.section-hero__copy > p {
  max-width: 545px;
  color: #52605a;
  margin-top: 25px;
  font-size: 17px;
  line-height: 1.65;
}
.section-hero__tag {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 42px;
  color: #57645f;
  font-size: 11px;
  font-weight: 700;
}
.section-hero__tag svg {
  color: var(--terra);
}
.section-hero__visual {
  position: relative;
  height: 480px;
  margin-top: 0;
}
.section-hero__visual img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.image-counter {
  position: absolute;
  bottom: -20px;
  left: -22px;
  width: 94px;
  height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 18px;
  background: var(--terra);
  color: white;
}
.image-counter span {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.image-counter strong {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
}
.feature-section {
  background: var(--paper);
}
.feature-grid {
  display: grid;
  grid-template-columns: 0.46fr 1.2fr 0.8fr;
  gap: 5vw;
  align-items: start;
}
.feature-index {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.feature-index p {
  margin-top: 12px;
  color: var(--green);
  font-size: 20px;
  font-family: var(--serif);
  letter-spacing: 0;
}
.feature-story {
  padding-right: 10px;
}
.feature-story h2 {
  font-size: clamp(38px, 4.5vw, 60px);
  margin: 14px 0 18px;
}
.feature-story > p:not(.tile-meta) {
  color: #58635e;
  max-width: 600px;
  font-size: 16px;
  line-height: 1.65;
}
.feature-story .inline-link {
  margin-top: 21px;
}
.feature-aside {
  background: #e5eee8;
  padding: 25px;
}
.feature-aside p:not(.tile-meta) {
  color: #4f5a55;
  font-size: 13px;
  line-height: 1.7;
  margin-top: 12px;
}
.measure-line {
  display: flex;
  margin-top: 30px;
  gap: 5px;
}
.measure-line span {
  width: 20%;
  height: 4px;
  background: var(--green);
}
.measure-line span:nth-child(2) {
  width: 45%;
  background: var(--terra);
}
.measure-line span:nth-child(3) {
  width: 25%;
}
.tile-section {
  background: #f0ede6;
}
.four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 45px;
}
.section-cta {
  background: var(--green);
  color: #edf4ee;
  padding: 80px 0;
}
.section-cta__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr;
  gap: 12vw;
  align-items: end;
}
.section-cta h2 {
  margin-top: 20px;
  color: white;
  font-size: clamp(36px, 4.5vw, 61px);
}
.section-cta h2 em {
  color: #c9e0d5;
}
.section-cta__inner > div:last-child p {
  color: #c3d7ce;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.related-strip {
  padding-top: 42px;
  padding-bottom: 42px;
}
.related-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.related-strip__inner > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #52605a;
  font-size: 12px;
}
.related-strip__inner svg {
  color: var(--terra);
}
.calculator-hero {
  color: #e8f1ed;
  background: var(--ink);
  padding-bottom: 88px;
}
.calculator-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 9vw;
  align-items: end;
  padding-top: 65px;
}
.calculator-hero h1 {
  color: white;
  font-size: clamp(58px, 7vw, 91px);
  margin-top: 20px;
  max-width: 710px;
}
.calculator-hero h1 em {
  color: #bbd6ca;
}
.calculator-hero__grid > div > p {
  color: #c2cec7;
  font-size: 16px;
  line-height: 1.7;
  max-width: 590px;
  margin-top: 23px;
}
.calculator-note {
  margin-top: 35px;
  display: flex;
  gap: 9px;
  color: #c6d4ce;
  font-size: 11px;
  max-width: 450px;
}
.calculator-emblem {
  width: 245px;
  height: 245px;
  background: var(--terra);
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  color: #fff6ef;
}
.calculator-emblem span {
  position: absolute;
  bottom: 15px;
  right: 18px;
  font-family: var(--serif);
  font-size: 44px;
}
.calculator-workspace {
  background: var(--paper);
}
.calculator-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 0.8fr;
  min-height: 345px;
  box-shadow: 10px 10px 0 #d6d0c4;
  background: #e7e2d7;
}
.calculator-panel__intro {
  background: var(--green);
  color: #eaf1eb;
  padding: 31px;
}
.calculator-panel__intro h2 {
  color: white;
  font-size: 38px;
  margin-top: 39px;
}
.calculator-panel__intro p {
  color: #c9d8d0;
  font-size: 12px;
  line-height: 1.65;
  margin-top: 10px;
}
.calculator-controls {
  padding: 31px;
}
.calculator-controls fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.calculator-controls legend,
.range-control {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}
.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}
.choice {
  border: 1px solid #a8afa9;
  background: transparent;
  padding: 8px 9px;
  font-size: 11px;
  font-weight: 700;
  color: #52605a;
}
.choice.is-selected {
  color: white;
  border-color: var(--green);
  background: var(--green);
}
.range-control {
  display: block;
  margin-top: 36px;
}
.range-control strong {
  float: right;
  color: var(--green);
  font-size: 14px;
  letter-spacing: 0;
}
.range-control input {
  display: block;
  width: 100%;
  accent-color: var(--terra);
  margin-top: 18px;
}
.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.calculator-result {
  background: #fbfaf6;
  padding: 31px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calculator-result p {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.calculator-result strong {
  font-family: var(--serif);
  font-size: 35px;
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-top: 13px;
}
.calculator-result > span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  margin-top: 13px;
}
.calculator-result .inline-link {
  margin-top: 22px;
  font-size: 10px;
}
.calculator-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  padding-top: 75px;
}
.calculator-checks svg {
  color: var(--terra);
}
.calculator-checks h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 25px;
  margin-top: 13px;
}
.calculator-checks p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  margin-top: 7px;
}
.article-page {
  background: var(--paper);
}
.article-head {
  padding-top: 62px;
  max-width: 940px;
}
.article-head__meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}
.article-head h1 {
  font-size: clamp(60px, 8vw, 104px);
  max-width: 900px;
  margin-top: 23px;
}
.article-lead {
  max-width: 670px;
  font-size: 19px;
  line-height: 1.65;
  color: #52605b;
  margin-top: 27px;
}
.article-byline {
  display: flex;
  gap: 22px;
  margin-top: 28px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}
.article-image-wrap {
  margin-top: 53px;
}
.article-image-wrap img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  object-position: center;
}
.article-image-wrap p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 10px;
}
.article-layout {
  max-width: 1020px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 65px;
  padding-top: 76px;
  padding-bottom: 100px;
}
.article-toc {
  align-self: start;
  position: sticky;
  top: 115px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid var(--line);
  padding-left: 16px;
}
.article-toc a {
  font-size: 11px;
  color: #5d6863;
}
.article-toc a:hover {
  color: var(--green);
}
.article-body {
  max-width: 650px;
}
.article-intro {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.27;
  letter-spacing: -0.025em;
  margin-bottom: 58px;
}
.article-body section {
  margin-top: 55px;
  scroll-margin-top: 120px;
}
.article-num {
  color: var(--terra);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.article-body h2 {
  font-size: 46px;
  margin: 13px 0 18px;
}
.article-body section > p {
  color: #4f5a56;
  font-size: 15px;
  line-height: 1.8;
}
.article-callout {
  display: flex;
  gap: 13px;
  padding: 18px;
  background: #e3eee7;
  margin-top: 23px;
}
.article-callout svg {
  color: var(--terra);
  flex: 0 0 auto;
}
.article-callout p {
  font-size: 13px;
  color: #3d4b45;
  line-height: 1.6;
}
.article-checklist {
  list-style: none;
  padding: 0;
  margin: 23px 0 0;
}
.article-checklist li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: #4f5a56;
}
.article-checklist svg {
  margin-top: 2px;
  color: var(--green);
  flex: 0 0 auto;
}
.article-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.article-split > div {
  padding: 20px;
  background: #e9e4d8;
}
.article-split svg {
  color: var(--green);
}
.article-split h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 25px;
  margin-top: 9px;
}
.article-split p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 7px;
}
.article-body .button {
  margin-top: 25px;
}
.article-next {
  background: var(--terra);
  color: #fff8f2;
  padding: 67px 0;
}
.article-next__inner {
  display: grid;
  grid-template-columns: 70px 1fr 55px;
  gap: 20px;
  align-items: center;
}
.article-next__inner > svg {
  color: #f5cfb8;
}
.article-next .section-kicker {
  color: #ffe4d5;
}
.article-next h2 {
  color: white;
  font-size: clamp(35px, 4.4vw, 56px);
  margin-top: 12px;
}
.article-next h2 em {
  color: #ffe0bd;
}
.round-link--light {
  background: #fff9f3;
  color: var(--terra);
}
.sale-hero {
  background: #123f37;
  color: #eaf1ec;
  padding-bottom: 82px;
}
.sale-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.5fr;
  gap: 7vw;
  align-items: end;
  padding-top: 66px;
}
.sale-hero h1 {
  color: white;
  font-size: clamp(83px, 11vw, 150px);
  margin-top: 18px;
}
.sale-hero h1 span {
  color: #eeb079;
}
.sale-hero h2 {
  color: #e9f0eb;
  font-size: clamp(35px, 4.6vw, 61px);
  margin-top: 14px;
  max-width: 710px;
}
.sale-hero h2 em {
  color: #c8ddcf;
}
.sale-hero__grid p {
  margin-top: 23px;
  max-width: 580px;
  color: #c5d5ce;
  font-size: 16px;
  line-height: 1.7;
}
.sale-hero__mark {
  justify-self: end;
  width: 240px;
  height: 240px;
  background: #dfe9e2;
  position: relative;
  padding: 38px;
  display: flex;
  align-items: flex-end;
  color: var(--green);
}
.sale-hero__mark img {
  width: 97px;
  height: 97px;
  object-fit: contain;
  align-self: flex-start;
}
.sale-hero__mark span {
  position: absolute;
  bottom: 19px;
  right: 19px;
  text-align: right;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.55;
  text-transform: uppercase;
}
.sale-intro {
  background: var(--paper);
}
.sale-intro__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 11vw;
}
.sale-intro h2 {
  margin-top: 15px;
  font-size: clamp(41px, 5vw, 67px);
}
.sale-intro__grid > div:last-child {
  color: #50605a;
  font-size: 16px;
  line-height: 1.7;
}
.sale-intro__grid > div:last-child p + p {
  margin-top: 17px;
}
.sale-reasons {
  background: #f0ede6;
}
.reasons-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #cfc9ba;
}
.reason-card {
  background: #f0ede6;
  min-height: 230px;
  padding: 23px;
}
.reason-card > span {
  color: var(--terra);
  font-family: var(--serif);
  font-size: 26px;
}
.reason-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.05;
  margin-top: 19px;
}
.reason-card p {
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 9px;
}
.business-section {
  background: var(--ink);
  color: #eaf0ec;
}
.business-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 11vw;
}
.business-copy h2 {
  color: white;
  font-size: clamp(42px, 5vw, 67px);
  margin-top: 15px;
}
.business-copy h2 em {
  color: #c6ddcf;
}
.business-copy > p {
  color: #c4d0ca;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 21px;
}
.business-models {
  border-top: 1px solid #ffffff33;
}
.model {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 21px 0;
  border-bottom: 1px solid #ffffff33;
}
.model svg {
  color: #e6b36e;
}
.model h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
}
.model p {
  font-size: 12px;
  line-height: 1.6;
  color: #c1cdc6;
  margin-top: 5px;
}
.included-section {
  background: #e1ece5;
}
.included-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 12vw;
}
.included-grid h2 {
  margin-top: 15px;
  font-size: clamp(42px, 5vw, 65px);
}
.included-list {
  border-top: 1px solid #a9c1b5;
}
.included-list > div {
  display: flex;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid #a9c1b5;
  color: #42524b;
  font-size: 13px;
  line-height: 1.6;
}
.included-list svg {
  color: var(--terra);
  flex: 0 0 auto;
  margin-top: 2px;
}
.included-list span {
  font-weight: 800;
}
.sale-contact {
  background: var(--terra);
  color: #fff7ef;
  padding: 78px 0;
}
.sale-contact__inner {
  display: flex;
  gap: 6vw;
  align-items: end;
  justify-content: space-between;
}
.sale-contact h2 {
  max-width: 700px;
  color: white;
  font-size: clamp(40px, 5vw, 68px);
  margin-top: 15px;
}
.sale-contact .section-kicker {
  color: #ffe3d2;
  margin-top: 17px;
}
.contact-mail {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
  border-bottom: 1px solid #ffffff99;
  padding-bottom: 6px;
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__content > * {
    animation: rise 0.55s cubic-bezier(0.23, 1, 0.32, 1) both;
  }
  .hero__content > *:nth-child(2) {
    animation-delay: 0.06s;
  }
  .hero__content > *:nth-child(3) {
    animation-delay: 0.12s;
  }
  .hero__content > *:nth-child(4) {
    animation-delay: 0.18s;
  }
  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (max-width: 1000px) {
  .main-nav {
    gap: 11px;
  }
  .main-nav__link {
    font-size: 11px;
  }
  .header-cta {
    display: none;
  }
  .section-hero__grid,
  .tools-layout,
  .join-band__inner,
  .business-grid {
    gap: 6vw;
  }
  .four-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calculator-panel {
    grid-template-columns: 0.75fr 1fr;
  }
  .calculator-result {
    grid-column: 1 / -1;
    min-height: 180px;
  }
  .sale-hero__grid {
    gap: 3vw;
  }
  .sale-hero__mark {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 720px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }
  .section-pad {
    padding: 70px 0;
  }
  .sale-strip__inner {
    min-height: 42px;
    align-items: center;
  }
  .sale-strip p {
    line-height: 1.35;
  }
  .sale-strip__link {
    font-size: 10px;
  }
  .sale-strip__eyebrow {
    display: none;
  }
  .site-header__inner {
    height: 67px;
    gap: 12px;
  }
  .brand {
    font-size: 37.5px;
  }
  .main-nav {
    overflow: auto;
    gap: 16px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .main-nav::-webkit-scrollbar {
    display: none;
  }
  .main-nav__link {
    padding: 23px 0 22px;
  }
  .main-nav__link::after {
    bottom: 15px;
  }
  .header-search {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .hero {
    min-height: 590px;
  }
  .hero__image {
    background-position: 64% center;
  }
  .hero__shade {
    background: linear-gradient(
      90deg,
      rgba(11, 27, 22, 0.91),
      rgba(11, 27, 22, 0.57)
    );
  }
  .hero__content {
    padding-top: 72px;
    padding-bottom: 42px;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero__content > p {
    font-size: 15px;
    max-width: 335px;
  }
  .hero__actions {
    gap: 17px;
    margin-top: 25px;
  }
  .hero__meter {
    margin-top: 55px;
  }
  .hero__meter span:last-child {
    display: none;
  }
  .hero__note {
    display: none;
  }
  .intro-grid,
  .tools-layout,
  .room-layout,
  .steps-grid,
  .join-band__inner,
  .feature-grid,
  .section-cta__inner,
  .sale-intro__grid,
  .business-grid,
  .included-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .intro-grid h2,
  .section-head h2 {
    font-size: 45px;
  }
  .intro-grid__copy {
    padding-left: 18px;
  }
  .section-head {
    align-items: flex-start;
  }
  .section-head__caption {
    display: none;
  }
  .decision-grid {
    grid-template-columns: 1fr;
    margin-top: 33px;
  }
  .start-card {
    min-height: 220px;
  }
  .tools-copy h2 {
    font-size: 46px;
  }
  .calculator-preview {
    min-height: 275px;
    margin-right: 12px;
  }
  .room-feature {
    min-height: 385px;
  }
  .room-feature h3 {
    font-size: 32px;
  }
  .room-list {
    grid-template-columns: 1fr 1fr;
  }
  .decision-tile {
    min-height: 210px;
  }
  .steps-section {
    padding: 72px 0;
  }
  .reads-grid {
    grid-template-columns: 1fr;
  }
  .read-card,
  .read-card:not(:first-child) {
    border-right: 0;
    border-bottom: 1px solid #c9c0ae;
    padding: 25px 0;
    min-height: 220px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 57px 0 43px;
  }
  .footer-links {
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 4px;
  }
  .section-hero {
    padding-bottom: 60px;
  }
  .section-hero__grid {
    grid-template-columns: 1fr;
    padding-top: 45px;
  }
  .section-hero h1 {
    font-size: 61px;
  }
  .section-hero__copy > p {
    font-size: 15px;
  }
  .section-hero__visual {
    height: 330px;
    margin-top: 12px;
  }
  .feature-story h2 {
    font-size: 44px;
  }
  .feature-index {
    display: flex;
    justify-content: space-between;
  }
  .feature-index p {
    margin: 0;
  }
  .feature-aside {
    margin-top: 8px;
  }
  .four-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .section-cta {
    padding: 62px 0;
  }
  .related-strip__inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .related-strip__inner > div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #52605a;
    font-size: 12px;
  }
  .related-strip__inner svg {
    color: var(--terra);
  }
  .calculator-hero {
    padding-bottom: 62px;
  }
  .calculator-hero__grid {
    grid-template-columns: 1fr;
    padding-top: 47px;
  }
  .calculator-hero h1 {
    font-size: 61px;
  }
  .calculator-emblem {
    justify-self: start;
    width: 150px;
    height: 150px;
  }
  .calculator-emblem svg {
    width: 50px;
  }
  .calculator-panel {
    grid-template-columns: 1fr;
    box-shadow: 6px 6px 0 #d6d0c4;
  }
  .calculator-panel__intro h2 {
    margin-top: 20px;
  }
  .calculator-result {
    min-height: 160px;
  }
  .calculator-checks {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 55px;
  }
  .article-head {
    padding-top: 42px;
  }
  .article-head h1 {
    font-size: 62px;
  }
  .article-lead {
    font-size: 16px;
  }
  .article-byline {
    flex-direction: column;
    gap: 4px;
  }
  .article-image-wrap {
    margin-top: 35px;
  }
  .article-image-wrap img {
    height: 310px;
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 48px;
    padding-bottom: 70px;
  }
  .article-toc {
    position: static;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 18px;
  }
  .article-body h2 {
    font-size: 40px;
  }
  .article-split {
    grid-template-columns: 1fr;
  }
  .article-next__inner {
    grid-template-columns: 45px 1fr;
  }
  .article-next .round-link {
    grid-column: 2;
  }
  .sale-hero {
    padding-bottom: 62px;
  }
  .sale-hero__grid {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }
  .sale-hero h1 {
    font-size: 85px;
  }
  .sale-hero h2 {
    font-size: 41px;
  }
  .sale-hero__mark {
    justify-self: start;
    width: 160px;
    height: 160px;
  }
  .sale-hero__mark img {
    width: 65px;
    height: 65px;
  }
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .reason-card {
    min-height: 0;
  }
  .sale-contact__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
  }
  .contact-mail {
    font-size: 15px;
  }
  .sale-contact h2 {
    font-size: 45px;
  }
}

/* Mesa de obra: en móvil la franja comercial se reduce a dos acciones legibles, sin texto auxiliar. */
@media (max-width: 720px) {
  .sale-strip p {
    font-size: 0;
    line-height: 1;
  }
  .sale-strip__eyebrow {
    display: inline;
    margin-right: 0;
    font-size: 10px;
    line-height: 1;
  }
}
