:root {
    --carbon: #1c1c1c;
    --graphite: #4e4e4e;
    --concrete: #8a8a86;
    --pearl: #d9d7d2;
    --fog: #f5f4f1;
    --sand: #c5a283;
    --sand-dark: #a88162;
    --white: #ffffff;
    --whatsapp: #20b85a;
    --font: "Gotham", "Montserrat", Arial, sans-serif;
    --shell: min(1180px, calc(100vw - 64px));
    --header-height: 90px;
    --line: 1px solid rgba(28, 28, 28, 0.14);
    --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    overflow-x: clip;
    background: var(--fog);
    color: var(--carbon);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

::selection {
    background: var(--sand);
    color: var(--carbon);
}

:focus-visible {
    outline: 3px solid var(--sand);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    padding: 10px 14px;
    background: var(--carbon);
    color: var(--white);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: none;
}

.section {
    padding: 112px 0;
}

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

.eyebrow,
.brand-line {
    color: var(--sand-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before {
    display: inline-block;
    width: 28px;
    height: 1px;
    margin-right: 12px;
    background: currentColor;
    content: "";
    vertical-align: middle;
}

.eyebrow--sand {
    color: var(--sand);
}

.section-title {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(2.1rem, 4.6vw, 4.75rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

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

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: clamp(40px, 8vw, 120px);
    align-items: end;
}

.section-heading--split > :last-child {
    max-width: 450px;
    margin-bottom: 4px;
    color: var(--graphite);
}

.section-heading--light,
.section-heading--light > :last-child {
    color: var(--fog);
}

.section-heading .eyebrow {
    margin-bottom: 24px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    border: 1px solid transparent;
    background: none;
    color: inherit;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.button:hover {
    transform: translateY(-2px);
}

.button--compact {
    min-height: 44px;
    padding-inline: 20px;
    font-size: 0.78rem;
}

.button--dark {
    background: var(--carbon);
    color: var(--white);
}

.button--dark:hover {
    background: var(--graphite);
}

.button--sand {
    background: var(--sand);
    color: var(--carbon);
}

.button--sand:hover {
    background: var(--white);
}

.button--block {
    width: 100%;
}

.button--whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover {
    gap: 17px;
    color: var(--sand-dark);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: grid;
    min-height: var(--header-height);
    grid-template-columns: 120px 1fr 160px;
    align-items: center;
    padding: 0 max(28px, calc((100vw - 1320px) / 2));
    border-bottom: var(--line);
    background: rgba(245, 244, 241, 0.94);
    backdrop-filter: blur(16px);
}

.brand {
    width: 70px;
}

.brand img {
    width: 100%;
    height: 70px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4vw, 56px);
}

.main-nav a {
    position: relative;
    padding: 34px 0 30px;
    color: var(--graphite);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    height: 1px;
    background: var(--sand-dark);
    content: "";
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.header-cta {
    justify-self: end;
}

.menu-toggle {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    display: grid;
    min-height: calc(100dvh - var(--header-height));
    grid-template-columns: 43% 57%;
    grid-template-rows: minmax(570px, 1fr) auto;
    overflow: hidden;
    background: var(--fog);
}

.hero::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 215, 210, 0.22), transparent 65%);
    clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
    content: "";
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 650px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 72px 28px 72px max(32px, calc((100vw - 1320px) / 2));
}

.brand-line {
    position: absolute;
    top: 34px;
    left: max(32px, calc((100vw - 1320px) / 2));
    color: var(--graphite);
    font-size: 0.75rem;
    white-space: nowrap;
}

.brand-line span {
    margin-inline: 10px;
    color: var(--sand-dark);
}

.hero-copy .eyebrow {
    margin-bottom: 24px;
}

.hero h1 {
    max-width: 650px;
    margin-bottom: 30px;
    font-size: clamp(3rem, 5.7vw, 6.1rem);
    font-weight: 800;
    letter-spacing: -0.065em;
    line-height: 0.91;
    text-transform: uppercase;
}

.hero-lead {
    max-width: 560px;
    margin-bottom: 34px;
    color: var(--graphite);
    font-size: 1rem;
    line-height: 1.75;
}

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

.availability-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    color: var(--graphite);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.availability-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--sand-dark);
    box-shadow: 0 0 0 5px rgba(197, 162, 131, 0.18);
}

.availability-dot--muted {
    background: var(--concrete);
    box-shadow: none;
}

.hero-media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(28, 28, 28, 0.14), transparent 32%);
    content: "";
}

.hero-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 57% center;
}

.hero-stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0 max(28px, calc((100vw - 1320px) / 2));
    background: var(--carbon);
    color: var(--white);
}

.hero-stats div {
    padding: 24px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats div:first-child {
    padding-left: 0;
}

.hero-stats div:last-child {
    border-right: 0;
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    color: var(--sand);
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-stats span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Intro */
.intro {
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(60px, 10vw, 160px);
    align-items: end;
}

.intro .eyebrow {
    margin-bottom: 24px;
}

.intro-copy {
    color: var(--graphite);
}

.intro-copy > p {
    margin-bottom: 36px;
    font-size: 1.05rem;
}

.feature-strip {
    display: grid;
    border-top: var(--line);
}

.feature-strip span {
    position: relative;
    padding: 13px 0 13px 24px;
    border-bottom: var(--line);
    color: var(--carbon);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-strip span::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 9px;
    height: 9px;
    border: 1px solid var(--sand-dark);
    content: "";
    transform: translateY(-50%) rotate(45deg);
}

/* Plano */
.plan-section {
    position: relative;
    overflow: hidden;
    background: var(--carbon);
    color: var(--fog);
}

.plan-section::before {
    position: absolute;
    top: -160px;
    right: -120px;
    width: 500px;
    height: 420px;
    background: rgba(197, 162, 131, 0.07);
    clip-path: polygon(35% 0, 100% 0, 75% 100%, 0 80%);
    content: "";
}

.legend {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
}

.legend span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legend-swatch {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.legend-swatch--available {
    background: var(--sand);
}

.legend-swatch--reserved {
    background: var(--graphite);
}

.data-notice {
    margin: -20px 0 24px;
    padding: 14px 18px;
    border-left: 3px solid var(--sand);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
}

.plan-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1671 / 944;
    overflow: hidden;
    border: 0;
    background: var(--white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    line-height: 0;
    touch-action: pan-x pan-y pinch-zoom;
}

.plan-frame > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
}

.plan-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    outline: 0;
    touch-action: pan-x pan-y pinch-zoom;
}

.plan-local {
    stroke: none !important;
    stroke-width: 0 !important;
    outline: none !important;
    cursor: pointer;
    touch-action: pan-x pan-y pinch-zoom;
    transition: fill 160ms ease;
}

.plan-local.is-available {
    fill: rgba(197, 162, 131, 0.69);
}

.plan-local.is-available:hover,
.plan-local.is-available:focus,
.plan-local.is-available:focus-visible {
    fill: rgba(197, 162, 131, 0.92);
    outline: none !important;
}

.plan-local.is-reserved {
    fill: rgba(28, 28, 28, 0.68);
}

.plan-local.is-reserved:hover,
.plan-local.is-reserved:focus,
.plan-local.is-reserved:focus-visible {
    fill: rgba(28, 28, 28, 0.87);
    outline: none !important;
}

.plan-tooltip {
    position: absolute;
    z-index: 8;
    min-width: 170px;
    padding: 12px 15px;
    border: 1px solid var(--sand);
    background: var(--carbon);
    color: var(--white);
    font-size: 0.8rem;
    line-height: 1.55;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, calc(-100% - 14px));
    transition: opacity 120ms ease;
}

.plan-tooltip strong,
.plan-tooltip span {
    display: block;
}

.plan-tooltip strong {
    color: var(--sand);
    font-size: 0.96rem;
}

.plan-tooltip span:last-child {
    color: rgba(255, 255, 255, 0.68);
}

.plan-help {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.76rem;
    letter-spacing: 0.05em;
    text-align: center;
}

/* Catálogo */
.catalog {
    background: var(--fog);
}

.price-lead strong {
    color: var(--carbon);
}

.price-lead small {
    display: block;
    margin-top: 8px;
    color: var(--graphite);
    font-size: 0.78rem;
    line-height: 1.55;
}

.catalog-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.filter-button {
    display: inline-flex;
    min-height: 42px;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    padding: 0 17px;
    border: var(--line);
    background: transparent;
    color: var(--graphite);
    cursor: pointer;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: background-color 160ms ease, color 160ms ease;
}

.filter-button span {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: rgba(28, 28, 28, 0.08);
    font-size: 0.75rem;
}

.filter-button.is-active,
.filter-button:hover {
    background: var(--carbon);
    color: var(--white);
}

.filter-button.is-active span,
.filter-button:hover span {
    background: rgba(255, 255, 255, 0.14);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.local-card {
    display: flex;
    min-width: 0;
    min-height: 420px;
    flex-direction: column;
    border: var(--line);
    background: var(--white);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}

.local-card:hover {
    border-color: var(--sand);
    box-shadow: 0 20px 50px rgba(28, 28, 28, 0.09);
    transform: translateY(-5px);
}

.local-card[hidden] {
    display: none;
}

.local-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px 0;
}

.local-card__index {
    color: var(--concrete);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.13em;
}

.status-pill {
    display: inline-flex;
    min-height: 27px;
    align-items: center;
    padding: 0 11px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.status-pill--available {
    background: rgba(197, 162, 131, 0.12);
    color: var(--sand-dark);
}

.status-pill--reserved {
    background: rgba(78, 78, 78, 0.08);
    color: var(--graphite);
}

.local-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px 22px;
}

.local-card__body h3 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.local-card dl {
    margin-bottom: 24px;
}

.local-card dl div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(28, 28, 28, 0.09);
    font-size: 0.83rem;
}

.local-card dt {
    color: var(--concrete);
}

.local-card dd {
    margin-bottom: 0;
    font-weight: 600;
    text-align: right;
}

.local-price {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin: auto 0 0;
}

.local-price span {
    color: var(--concrete);
    font-size: 0.75rem;
}

.local-price strong {
    color: var(--sand-dark);
    font-size: 1.28rem;
    letter-spacing: -0.035em;
    text-align: right;
}

.local-price small {
    display: block;
    margin-top: 3px;
    color: var(--graphite);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.local-price--muted strong {
    color: var(--concrete);
}

.local-card__footer {
    min-height: 58px;
    border-top: var(--line);
}

.local-card__footer a,
.local-card__footer > span {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.local-card__footer a {
    background: var(--carbon);
    color: var(--white);
    transition: background-color 180ms ease, color 180ms ease;
}

.local-card__footer a:hover {
    background: var(--sand);
    color: var(--carbon);
}

.local-card__footer > span {
    color: var(--concrete);
}

.empty-state {
    display: grid;
    grid-template-columns: minmax(110px, 0.24fr) minmax(0, 0.76fr);
    gap: 40px;
    align-items: center;
    padding: 54px;
    border: var(--line);
    background: var(--white);
}

.empty-state__number {
    color: var(--sand);
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 800;
    letter-spacing: -0.09em;
    line-height: 0.8;
}

.empty-state h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.empty-state p {
    max-width: 600px;
    color: var(--graphite);
}

/* Concepto */
.concept {
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(360px, 0.62fr);
    padding: 0;
    background: var(--graphite);
    color: var(--white);
}

.concept-media {
    min-height: 720px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.concept-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concept-copy {
    display: flex;
    max-width: 600px;
    flex-direction: column;
    justify-content: center;
    padding: 80px clamp(32px, 7vw, 110px) 80px 20px;
}

.concept-copy .eyebrow {
    margin-bottom: 24px;
}

.concept-copy .section-title {
    margin-bottom: 30px;
    font-size: clamp(2.25rem, 4.25vw, 4.4rem);
}

.concept-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
}

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

.check-list li {
    position: relative;
    padding: 14px 0 14px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.check-list li::before {
    position: absolute;
    top: 22px;
    left: 2px;
    width: 8px;
    height: 8px;
    border: 1px solid var(--sand);
    content: "";
    transform: rotate(45deg);
}

/* Ubicación */
.location {
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: center;
}

.location-copy .eyebrow {
    margin-bottom: 24px;
}

.location-copy .section-title {
    margin-bottom: 28px;
    font-size: clamp(2.1rem, 4vw, 4rem);
}

.location-copy > p:not(.eyebrow) {
    color: var(--graphite);
}

.location-address {
    display: grid;
    margin: 32px 0;
    padding: 22px 0;
    border-top: var(--line);
    border-bottom: var(--line);
    gap: 6px;
}

.location-address span {
    color: var(--sand-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.location-address strong {
    font-size: 0.96rem;
}

.location-map {
    position: relative;
    min-height: 570px;
    padding: 26px 0 0 26px;
}

.location-map::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 65%;
    background: var(--sand);
    content: "";
}

.location-map::after {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 160px;
    height: 160px;
    border-right: 1px solid var(--pearl);
    border-bottom: 1px solid var(--pearl);
    content: "";
}

.location-map iframe {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 570px;
    border: 0;
    filter: grayscale(1) contrast(0.95);
}

/* CTA */
.contact-band {
    display: grid;
    min-height: 430px;
    grid-template-columns: 0.5fr 1.2fr 0.7fr;
    overflow: hidden;
    background: var(--fog);
}

.contact-band__dark {
    display: grid;
    place-items: center;
    background: var(--carbon);
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.contact-band__dark img {
    width: 120px;
    filter: invert(1);
}

.contact-band__copy {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 70px clamp(35px, 6vw, 100px);
}

.contact-band__copy .eyebrow {
    margin-bottom: 18px;
}

.contact-band__copy h2 {
    max-width: 650px;
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 4rem);
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.contact-band__copy p:not(.eyebrow) {
    max-width: 530px;
    color: var(--graphite);
}

.contact-band__copy .button {
    margin-top: 12px;
}

.contact-band__image {
    background: linear-gradient(rgba(28, 28, 28, 0.12), rgba(28, 28, 28, 0.12)), url("../images/plaza-fachada-1.avif") center / cover;
    clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}

/* Footer */
.site-footer {
    background: radial-gradient(circle at 50% -45%, #303030 0, var(--carbon) 54%);
    color: rgba(255, 255, 255, 0.58);
}

.site-footer__shell {
    width: min(calc(100% - 64px), 1320px);
    margin: 0 auto;
    padding: 54px 0 70px;
}

.site-footer__main {
    display: grid;
    grid-template-columns: minmax(170px, 0.72fr) minmax(200px, 1fr) minmax(190px, 0.88fr) minmax(260px, 1.18fr);
}

.site-footer__column {
    min-width: 0;
    padding: 0 clamp(26px, 3.2vw, 50px);
    border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.site-footer__column:first-child {
    padding-left: 0;
    border-left: 0;
}

.site-footer__column:last-child {
    padding-right: 0;
}

.site-footer__heading {
    margin: 0 0 16px;
    color: var(--sand);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.45;
    text-transform: uppercase;
}

.site-footer__logo-stage {
    display: grid;
    width: 120px;
    height: 116px;
    place-items: center;
    transition: opacity 180ms ease, transform 180ms var(--ease);
}

.site-footer__logo-stage:hover {
    opacity: 0.78;
    transform: translateY(-2px);
}

.site-footer__plaza img {
    display: block;
    width: 86px;
    height: auto;
    filter: invert(1);
    opacity: 0.94;
}

.site-footer__solida img {
    display: block;
    width: 88px;
    height: 100px;
    object-fit: contain;
    opacity: 0.94;
}

.site-footer__brand-name {
    margin: 6px 0 7px;
    color: var(--sand);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer__brand,
.site-footer__commercial {
    text-align: center;
}

.site-footer__brand .site-footer__logo-stage,
.site-footer__commercial .site-footer__logo-stage,
.site-footer__brand > p,
.site-footer__commercial > p {
    margin-right: auto;
    margin-left: auto;
}

.site-footer__column > p {
    max-width: 230px;
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.72rem;
    line-height: 1.65;
}

.site-footer__commercial .site-footer__logo-stage {
    margin-top: -5px;
}

.site-footer__commercial > p {
    margin-top: 7px;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
}

.site-footer__links a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    transition: color 160ms ease, padding-left 160ms var(--ease);
}

.site-footer__links a span {
    color: var(--sand);
    font-size: 1.05rem;
    line-height: 1;
}

.site-footer__links a:hover {
    padding-left: 4px;
    color: var(--white);
}

.site-footer__more > p {
    margin-bottom: 22px;
}

.site-footer__button {
    display: inline-flex;
    width: 100%;
    max-width: 270px;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 20px;
    border: 1px solid rgba(197, 162, 131, 0.7);
    color: var(--sand);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.site-footer__button:hover {
    border-color: var(--sand);
    background: var(--sand);
    color: var(--carbon);
    transform: translateY(-2px);
}

.site-footer__bottom {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 30px 60px;
    align-items: center;
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-footer__social > p {
    margin: 0;
    color: var(--sand);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer__social nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer__social a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.68);
    transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-footer__social a:hover {
    border-color: var(--sand);
    color: var(--sand);
    transform: translateY(-2px);
}

.site-footer__social svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.site-footer__legal {
    justify-self: end;
    font-size: 0.75rem;
    text-align: right;
}

.site-footer__legal p {
    margin: 0 0 5px;
}

.site-footer__address {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.site-footer__address svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--sand);
    stroke-width: 1.4;
}

.site-footer__legal a {
    color: var(--sand);
    transition: color 160ms ease;
}

.site-footer__legal a:hover {
    color: var(--white);
}

/* WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    z-index: 950;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--whatsapp);
    box-shadow: 0 12px 34px rgba(18, 126, 59, 0.32);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 180ms var(--ease), box-shadow 180ms ease;
}

.whatsapp-float:hover {
    box-shadow: 0 16px 40px rgba(18, 126, 59, 0.42);
    transform: translateY(-4px);
}

.whatsapp-float svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

/* Diálogo de local */
.local-dialog {
    width: min(460px, calc(100vw - 32px));
    max-height: calc(100dvh - 32px);
    padding: 38px;
    border: 0;
    background: var(--fog);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    color: var(--carbon);
}

.local-dialog::backdrop {
    background: rgba(28, 28, 28, 0.78);
    backdrop-filter: blur(6px);
}

.local-dialog .eyebrow {
    margin-bottom: 22px;
}

.dialog-close {
    position: absolute;
    top: 13px;
    right: 15px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--graphite);
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
}

.dialog-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.dialog-heading h2 {
    margin-bottom: 0;
    font-size: 2.8rem;
    letter-spacing: -0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.dialog-data {
    margin-bottom: 30px;
    border-top: var(--line);
}

.dialog-data div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: var(--line);
    font-size: 0.79rem;
}

.dialog-data dt {
    color: var(--concrete);
}

.dialog-data dd {
    margin-bottom: 0;
    font-weight: 700;
    text-align: right;
}

/* Responsive */
@media (max-width: 1100px) {
    :root {
        --shell: min(100% - 48px, 980px);
    }

    .site-header {
        grid-template-columns: 90px 1fr 150px;
    }

    .hero {
        grid-template-columns: 48% 52%;
    }

    .hero-copy {
        padding-left: 32px;
    }

    .brand-line {
        left: 32px;
    }

    .hero h1 {
        font-size: clamp(3rem, 6.4vw, 5rem);
    }

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

    .concept {
        grid-template-columns: 1.08fr 0.92fr;
    }

    .concept-copy {
        padding-right: 48px;
    }

    .contact-band {
        grid-template-columns: 0.42fr 1.35fr 0.48fr;
    }

    .site-footer__main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 36px;
    }

    .site-footer__column {
        padding-inline: 36px;
    }

    .site-footer__column:nth-child(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .site-footer__column:nth-child(even) {
        padding-right: 0;
    }

    .site-footer__column:nth-child(n + 3) {
        padding-top: 36px;
        border-top: 1px solid rgba(255, 255, 255, 0.11);
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 78px;
        --shell: calc(100% - 40px);
    }

    .section {
        padding: 82px 0;
    }

    .site-header {
        grid-template-columns: 1fr auto;
        min-height: var(--header-height);
        padding-inline: 20px;
    }

    body.menu-open .site-header {
        background: var(--fog);
        backdrop-filter: none;
    }

    .brand,
    .brand img {
        width: 58px;
        height: 58px;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        position: relative;
        z-index: 2;
        display: grid;
        width: 44px;
        height: 44px;
        place-content: center;
        gap: 7px;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 26px;
        height: 1px;
        background: var(--carbon);
        transition: transform 180ms ease;
    }

    .menu-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        z-index: 1;
        inset: var(--header-height) 0 auto;
        display: flex;
        height: auto;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 8px 20px 18px;
        border-bottom: 1px solid var(--pearl);
        background: var(--fog);
        box-shadow: 0 18px 38px rgba(28, 28, 28, 0.14);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .main-nav a {
        width: 100%;
        padding: 15px 4px;
        border-bottom: var(--line);
        font-size: 0.8rem;
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .hero {
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto 54vh auto;
    }

    .hero-copy {
        max-width: none;
        min-height: 580px;
        padding: 90px 24px 70px;
    }

    .brand-line {
        top: 26px;
        left: 24px;
    }

    .hero h1 {
        max-width: 680px;
        font-size: clamp(3.25rem, 11vw, 5.5rem);
    }

    .hero-lead {
        max-width: 620px;
    }

    .hero-media {
        clip-path: none;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        padding-inline: 20px;
    }

    .hero-stats div,
    .hero-stats div:first-child {
        padding: 20px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .hero-stats div:nth-child(2) {
        border-right: 0;
    }

    .hero-stats div:nth-child(n + 3) {
        border-bottom: 0;
    }

    .section-heading--split,
    .intro-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .section-heading--split {
        align-items: start;
    }

    .section-heading--split > :last-child {
        max-width: 600px;
    }

    .concept {
        grid-template-columns: 1fr;
    }

    .concept-media {
        min-height: 58vh;
        clip-path: none;
    }

    .concept-copy {
        max-width: none;
        padding: 78px 24px;
    }

    .location-map,
    .location-map iframe {
        min-height: 480px;
        height: 480px;
    }

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

    .contact-band__image {
        display: none;
    }

    .contact-band__copy {
        padding-inline: 36px;
    }

    .site-footer__shell {
        width: calc(100% - 48px);
    }

    .site-footer__bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .site-footer__legal {
        justify-self: start;
        text-align: left;
    }

    .site-footer__address {
        justify-content: flex-start;
    }
}

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

    .section {
        padding: 68px 0;
    }

    .section-title {
        font-size: clamp(2.2rem, 12vw, 3.4rem);
    }

    .hero-copy {
        min-height: 550px;
        padding-inline: 18px;
    }

    .brand-line {
        left: 18px;
        max-width: calc(100% - 36px);
        font-size: 0.75rem;
        letter-spacing: 0.14em;
        white-space: normal;
    }

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

    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-media {
        min-height: 370px;
    }

    .hero-stats {
        padding-inline: 14px;
    }

    .hero-stats strong {
        font-size: 1.08rem;
    }

    .hero-stats span {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }

    .plan-section .section-shell {
        width: 100%;
    }

    .plan-section .section-heading,
    .data-notice,
    .plan-help {
        margin-right: 16px;
        margin-left: 16px;
    }

    .plan-frame {
        width: 100%;
        overflow: hidden;
        overscroll-behavior: contain;
    }

    .plan-frame > img,
    .plan-overlay {
        width: 100%;
        min-width: 0;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .local-card {
        min-height: 400px;
    }

    .empty-state {
        grid-template-columns: 1fr;
        padding: 34px 24px;
    }

    .empty-state__number {
        font-size: 6rem;
    }

    .concept-media {
        min-height: 430px;
    }

    .location-map {
        min-height: 410px;
        padding: 16px 0 0 16px;
    }

    .location-map iframe {
        min-height: 410px;
        height: 410px;
    }

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

    .contact-band__dark {
        min-height: 170px;
        clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
    }

    .contact-band__dark img {
        width: 76px;
    }

    .contact-band__copy {
        padding: 45px 20px 70px;
    }

    .contact-band__copy .button {
        width: 100%;
    }

    .site-footer__shell {
        width: calc(100% - 40px);
        padding: 44px 0 92px;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .site-footer__column,
    .site-footer__column:nth-child(odd),
    .site-footer__column:nth-child(even),
    .site-footer__column:nth-child(n + 3) {
        padding: 28px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 0;
    }

    .site-footer__column:first-child {
        padding-top: 0;
        border-top: 0;
    }

    .site-footer__column + .site-footer__column {
        margin-top: 28px;
    }

    .site-footer__brand,
    .site-footer__commercial {
        display: grid;
        grid-template-columns: 86px minmax(0, 1fr);
        column-gap: 19px;
        align-items: center;
        text-align: left;
    }

    .site-footer__brand .site-footer__logo-stage,
    .site-footer__commercial .site-footer__logo-stage {
        grid-column: 1;
        grid-row: 1 / 3;
        width: 86px;
        height: 88px;
        margin: 0;
    }

    .site-footer__brand-name,
    .site-footer__commercial .site-footer__heading {
        grid-column: 2;
        grid-row: 1;
        align-self: end;
        margin-bottom: 7px;
    }

    .site-footer__brand > p,
    .site-footer__commercial > p {
        grid-column: 2;
        grid-row: 2;
        align-self: start;
        margin: 0;
    }

    .site-footer__plaza img {
        width: 64px;
    }

    .site-footer__solida img {
        width: 70px;
        height: 78px;
    }

    .site-footer__button {
        max-width: none;
    }

    .site-footer__bottom {
        margin-top: 32px;
    }

    .site-footer__social {
        gap: 18px;
    }

    .site-footer__social nav {
        gap: 8px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
        min-height: 54px;
        justify-content: center;
        padding: 0;
    }

    .whatsapp-float span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .local-dialog {
        padding: 34px 24px 24px;
    }

    .dialog-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

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