/* Estilos de la versión residencial principal de Senna. */
:root {
    --red: #a90000;
    --red-dark: #740000;
    --red-soft: #f7ecec;
    --ink: #202020;
    --ink-soft: #5f5f5f;
    --paper: #ffffff;
    --sand: #f6f3ef;
    --line: #e8e3de;
    --green: #208357;
    --shadow: 0 24px 70px rgba(35, 24, 20, 0.11);
    --radius: 22px;
    --shell: min(1180px, calc(100% - 48px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

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

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

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

.section {
    padding: 112px 0;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 10px 16px;
    color: var(--paper);
    background: var(--ink);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

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

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.eyebrow-light {
    color: rgba(255, 255, 255, 0.78);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.035em;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-light {
    color: var(--red);
    background: var(--paper);
}

.button-light:hover {
    color: var(--paper);
    background: var(--ink);
}

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

.button-ghost:hover {
    color: var(--ink);
    background: var(--paper);
}

.button-dark {
    color: var(--paper);
    background: var(--ink);
}

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

.button-red {
    color: var(--paper);
    background: var(--red);
}

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

.button-full {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 84px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(40, 40, 40, 0.08);
    backdrop-filter: blur(14px);
}

.header-inner {
    width: var(--shell);
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: auto;
    height: 49px;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 29px;
}

.main-menu a {
    position: relative;
    padding: 29px 0 26px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.main-menu a::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    background: var(--red);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.main-menu a:hover,
.main-menu a.is-active {
    color: var(--red);
}

.main-menu a:hover::after,
.main-menu a.is-active::after {
    transform: scaleX(1);
}

.main-menu .commercial-link {
    min-height: 42px;
    padding: 9px 17px;
    color: var(--paper);
    background: var(--red);
    border-radius: 4px;
}

.main-menu .commercial-link::after {
    display: none;
}

.main-menu .commercial-link:hover {
    color: var(--paper);
    background: var(--red-dark);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px 9px;
    border: 0;
    background: transparent;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    min-height: calc(100svh - 84px);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    color: var(--paper);
    background: #4d1717;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: url("../../comercial/assets/images/slide-01.webp");
    background-position: center;
    background-size: cover;
    transform: scale(1.015);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(89, 0, 0, 0.94) 0%, rgba(115, 0, 0, 0.75) 32%, rgba(19, 16, 16, 0.2) 68%, rgba(10, 10, 10, 0.2) 100%),
        linear-gradient(0deg, rgba(18, 11, 9, 0.5), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: inherit;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 60px;
    padding-top: 80px;
    padding-bottom: 84px;
}

.hero-copy {
    max-width: 715px;
    align-self: center;
    padding-top: 20px;
}

.hero-copy h1 {
    max-width: 700px;
    margin-bottom: 27px;
    font-size: clamp(54px, 6.6vw, 96px);
    font-weight: 700;
    letter-spacing: -0.055em;
}

.hero-copy h1 em {
    font-style: normal;
    font-weight: 300;
}

.hero-copy p {
    max-width: 630px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 120px);
    align-self: end;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-facts div {
    padding: 18px 16px 17px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
}

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

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

.hero-facts strong {
    margin-bottom: 2px;
    font-size: 27px;
    font-weight: 500;
}

.hero-facts span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-scroll {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transform: rotate(-90deg) translateX(100%);
    transform-origin: right bottom;
}

.hero-scroll span {
    font-size: 18px;
}

.project-section {
    background: var(--paper);
}

.project-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 92px;
}

.project-copy h2,
.section-heading h2,
.location-copy h2,
.contact-copy h2,
.documents-grid h2 {
    margin-bottom: 26px;
    font-size: clamp(38px, 4.2vw, 58px);
    font-weight: 600;
    letter-spacing: -0.045em;
}

.project-copy .lead {
    color: var(--ink);
    font-size: 19px;
    line-height: 1.8;
}

.project-copy > p:not(.lead) {
    color: var(--ink-soft);
}

.feature-list {
    margin-top: 42px;
    border-top: 1px solid var(--line);
}

.feature-list > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.feature-list span {
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
}

.feature-list p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.feature-list strong {
    color: var(--ink);
}

.project-visual {
    position: relative;
    padding-bottom: 48px;
}

.project-image {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.project-image img {
    width: 100%;
    min-height: 570px;
    object-fit: cover;
    object-position: 61% center;
}

.project-quote {
    position: absolute;
    right: -28px;
    bottom: 0;
    width: min(310px, 72%);
    padding: 28px 30px;
    color: var(--paper);
    background: var(--red);
    border-radius: 4px;
    box-shadow: 0 18px 45px rgba(105, 0, 0, 0.24);
}

.project-quote span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.project-quote p {
    margin: 11px 0 0;
    font-size: 18px;
    line-height: 1.5;
}

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

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

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

.section-heading-split h2 {
    margin-bottom: 0;
}

.section-heading-split > p {
    margin-bottom: 4px;
    color: var(--ink-soft);
}

.centered-heading {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.centered-heading p {
    max-width: 610px;
    margin-inline: auto;
    color: var(--ink-soft);
}

.video-frame {
    position: relative;
    overflow: hidden;
    background: #111;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.video-frame video {
    width: 100%;
    aspect-ratio: 16 / 8.5;
    object-fit: cover;
}

.video-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 12px 16px;
    color: var(--paper);
    background: rgba(21, 21, 21, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    font-size: 11px;
    letter-spacing: 0.08em;
    backdrop-filter: blur(10px);
}

.video-badge span {
    font-weight: 700;
}

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

.amenity-card {
    position: relative;
    min-height: 238px;
    padding: 38px 34px;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.amenity-card:hover {
    border-color: rgba(169, 0, 0, 0.3);
    box-shadow: 0 20px 50px rgba(35, 24, 20, 0.08);
    transform: translateY(-5px);
}

.amenity-card img {
    width: 58px;
    height: 58px;
    margin-bottom: 34px;
    object-fit: contain;
}

.amenity-card > span {
    position: absolute;
    top: 28px;
    right: 28px;
    color: #b6afaa;
    font-size: 11px;
    font-weight: 600;
}

.amenity-card h3 {
    max-width: 240px;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
}

.acquisition-section {
    padding: 96px 0;
    color: var(--paper);
    background:
        linear-gradient(100deg, rgba(92, 0, 0, 0.96), rgba(169, 0, 0, 0.91)),
        url("../../images/main-slider/centro1-1.jpg") center / cover;
}

.acquisition-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
    align-items: center;
    gap: 90px;
}

.acquisition-grid h2 {
    max-width: 680px;
    margin-bottom: 22px;
    font-size: clamp(40px, 4.8vw, 66px);
    font-weight: 600;
    letter-spacing: -0.05em;
}

.acquisition-grid > div:first-child p {
    max-width: 560px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.payment-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 32px;
    color: var(--ink);
    background: var(--paper);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.payment-card > span,
.payment-card > strong,
.payment-card > p {
    grid-column: 1 / -1;
}

.payment-card > span {
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.payment-card > strong {
    margin: 5px 0 23px;
    color: var(--red);
    font-size: 58px;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.payment-card > div {
    padding: 17px 16px 17px 0;
    border-top: 1px solid var(--line);
}

.payment-card b,
.payment-card small {
    display: block;
}

.payment-card b {
    font-size: 24px;
}

.payment-card small {
    color: var(--ink-soft);
}

.payment-card > p {
    margin: 16px 0 0;
    color: var(--ink-soft);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

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

.availability-heading {
    align-items: center;
}

.availability-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.availability-stats div {
    padding: 20px 24px;
}

.availability-stats div + div {
    border-left: 1px solid var(--line);
}

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

.availability-stats strong {
    color: var(--red);
    font-size: 30px;
    line-height: 1.1;
}

.availability-stats span {
    margin-top: 5px;
    color: var(--ink-soft);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    align-items: end;
    gap: 14px;
    margin-bottom: 32px;
    padding: 22px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.filter-form label,
.appointment-form label {
    display: block;
}

.filter-form label > span,
.appointment-form label > span {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.filter-form select,
.unit-selector select {
    width: 100%;
    height: 52px;
    padding: 0 42px 0 14px;
    color: var(--ink);
    background-color: #faf9f8;
    border: 1px solid #ddd7d1;
    border-radius: 4px;
}

.clear-filters {
    grid-column: 1 / -1;
    justify-self: end;
    color: var(--red);
    font-size: 12px;
    font-weight: 600;
}

.table-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 13px;
}

.table-note span {
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.table-note small {
    color: var(--ink-soft);
}

.availability-table-wrap {
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(44, 32, 27, 0.06);
}

.availability-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.availability-table th,
.availability-table td {
    padding: 17px 15px;
    text-align: left;
    vertical-align: middle;
}

.availability-table thead {
    color: var(--paper);
    background: var(--ink);
}

.availability-table th {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.availability-table tbody tr {
    border-bottom: 1px solid var(--line);
}

.availability-table tbody tr:last-child {
    border-bottom: 0;
}

.availability-table tbody tr.is-available:hover {
    background: #fffafa;
}

.availability-table .is-sold td:not(:last-child) {
    color: #9b9692;
}

.status {
    display: inline-flex;
    min-width: 90px;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.status-available {
    color: #fff;
    background: var(--red);
    transition: background 180ms ease;
}

.status-available:hover {
    background: var(--red-dark);
}

.status-sold {
    color: #8d8782;
    background: #eeeae7;
}

.data-notice {
    padding: 42px;
    text-align: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.data-notice strong {
    display: block;
    margin-bottom: 6px;
    font-size: 19px;
}

.data-notice p {
    margin-bottom: 22px;
    color: var(--ink-soft);
}

.data-notice.compact {
    padding: 28px;
}

.data-notice.compact p {
    margin-bottom: 0;
}

.location-section {
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.7fr);
    align-items: end;
    gap: 84px;
}

.location-map {
    margin: 50px 0 0;
    overflow: hidden;
    background: #171717;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.location-map-image {
    display: block;
    overflow: hidden;
}

.location-map img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.location-map figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
}

.location-map figcaption small {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
}

.location-copy > p {
    max-width: 650px;
    margin-bottom: 26px;
    color: var(--ink-soft);
}

.location-highlights {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.location-highlights li {
    display: flex;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 14px;
}

.location-highlights li strong {
    min-width: 65px;
    color: var(--red);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
}

.text-link span {
    font-size: 18px;
}

.contact-section {
    padding: 102px 0;
    color: var(--paper);
    background:
        linear-gradient(115deg, rgba(97, 0, 0, 0.96), rgba(169, 0, 0, 0.9)),
        url("../../comercial/assets/images/reservation-bg.jpg") center / cover;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.75fr);
    align-items: center;
    gap: 90px;
}

.contact-copy p {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.75);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 36px;
}

.contact-cards a {
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
}

.contact-cards span,
.contact-cards strong {
    display: block;
}

.contact-cards span {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-cards strong {
    font-size: 13px;
}

.appointment-form {
    position: relative;
    padding: 38px;
    color: var(--ink);
    background: var(--paper);
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(55, 0, 0, 0.27);
}

.form-heading {
    margin-bottom: 24px;
}

.form-heading span {
    display: block;
    font-size: 23px;
    font-weight: 700;
}

.form-heading p {
    margin: 2px 0 0;
    color: var(--ink-soft);
    font-size: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.appointment-form input,
.appointment-form textarea {
    width: 100%;
    margin-bottom: 14px;
    padding: 12px 14px;
    color: var(--ink);
    background: #faf9f8;
    border: 1px solid #ddd7d1;
    border-radius: 4px;
    outline: 0;
}

.appointment-form input {
    height: 49px;
}

.appointment-form textarea {
    resize: vertical;
}

.appointment-form input:focus,
.appointment-form textarea:focus,
.filter-form select:focus,
.unit-selector select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(169, 0, 0, 0.08);
}

.appointment-form .button-light {
    color: var(--paper);
    background: var(--red);
}

.appointment-form .button-light:hover {
    background: var(--red-dark);
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
}

.form-feedback {
    display: none;
    margin-bottom: 16px;
    padding: 11px 13px;
    border-radius: 4px;
    font-size: 12px;
}

.form-feedback.is-success,
.form-feedback.is-error {
    display: block;
}

.form-feedback.is-success {
    color: #155724;
    background: #d4edda;
}

.form-feedback.is-error {
    color: #721c24;
    background: #f8d7da;
}

.site-footer {
    color: var(--paper);
    background: #242424;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 40px;
    min-height: 150px;
    padding-top: 42px;
    padding-bottom: 42px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social a {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #242424;
    background: var(--paper);
    border-radius: 50%;
    font-size: 20px;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.footer-social a:hover {
    color: var(--paper);
    background: #870000;
    transform: translateY(-2px);
}

.footer-brand {
    display: flex;
    justify-content: center;
}

.footer-brand img {
    width: auto;
    height: 54px;
    max-width: 100%;
}

.footer-copy {
    text-align: right;
}

.footer-copy p {
    margin: 0;
    color: var(--paper);
    font-size: 13px;
    line-height: 1.65;
}

.footer-copy span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
}

.privacy-link:hover {
    color: var(--paper);
}

.privacy-link {
    padding: 0;
    color: rgba(255, 255, 255, 0.78);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    cursor: pointer;
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #171717;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-bottom-inner address {
    max-width: 480px;
    font-style: normal;
}

.wa-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.wa-text {
    padding: 8px 14px;
    color: var(--paper);
    background: #25d366;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    white-space: nowrap;
    animation: wa-fade-in 0.8s ease forwards;
}

.wa-button {
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

.wa-button:hover {
    transform: scale(1.08);
}

.wa-button img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

@keyframes wa-fade-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-dialog {
    width: min(760px, calc(100% - 32px));
    max-height: min(82vh, 760px);
    padding: 0;
    overflow: hidden;
    color: var(--ink);
    background: var(--paper);
    border: 0;
    border-radius: 14px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.32);
}

.privacy-dialog::backdrop {
    background: rgba(15, 15, 15, 0.72);
    backdrop-filter: blur(5px);
}

.privacy-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 34px 22px;
    border-bottom: 1px solid var(--line);
}

.privacy-head h2 {
    margin: 0;
    font-size: 28px;
}

.privacy-head .eyebrow {
    margin-bottom: 8px;
}

.privacy-head button {
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--ink);
    background: var(--sand);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 25px;
}

.privacy-body {
    max-height: calc(82vh - 108px);
    padding: 28px 34px 36px;
    overflow-y: auto;
}

.privacy-body p {
    color: var(--ink-soft);
    font-size: 13px;
}

.privacy-body a {
    color: var(--red);
    text-decoration: underline;
}

/* Unit detail */
.unit-title-band {
    padding: 70px 0 62px;
    color: var(--paper);
    background:
        linear-gradient(115deg, rgba(95, 0, 0, 0.98), rgba(169, 0, 0, 0.9)),
        url("../../comercial/assets/images/slide-01.webp") center 54% / cover;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 46px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
}

.breadcrumbs a:hover {
    color: var(--paper);
}

.unit-title-band .eyebrow {
    margin-bottom: 9px;
}

.unit-title-band h1 {
    margin-bottom: 0;
    font-size: clamp(44px, 5.6vw, 72px);
    font-weight: 600;
    letter-spacing: -0.05em;
}

.unit-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.72fr);
    gap: 70px;
    align-items: start;
}

.unit-gallery {
    min-width: 0;
}

.unit-main-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    overflow: hidden;
    line-height: 0;
    background: transparent;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.unit-main-image img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: initial;
    border-radius: inherit;
}

.unit-status {
    position: absolute;
    top: 22px;
    left: 22px;
    padding: 9px 14px;
    color: var(--paper);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.unit-status.available {
    background: var(--green);
}

.unit-status.sold {
    background: #7c7773;
}

.unit-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.unit-thumbnails button {
    height: 92px;
    padding: 0;
    overflow: hidden;
    background: var(--sand);
    border: 2px solid transparent;
    border-radius: 7px;
    cursor: pointer;
}

.unit-thumbnails button.is-active {
    border-color: var(--red);
}

.unit-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.unit-summary {
    position: sticky;
    top: 116px;
    padding: 8px 0;
}

.unit-summary h2 {
    margin-bottom: 8px;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 600;
    letter-spacing: -0.045em;
}

.unit-distribution {
    margin-bottom: 34px;
    color: var(--ink-soft);
    font-size: 18px;
}

.unit-specs {
    margin-bottom: 30px;
    border-top: 1px solid var(--line);
}

.unit-specs > div {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.unit-specs dt {
    color: var(--ink-soft);
    font-size: 12px;
}

.unit-specs dd {
    margin: 0;
    text-align: right;
    font-size: 13px;
    font-weight: 600;
}

.unit-selector {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.unit-selector > label {
    display: block;
    margin-bottom: 8px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.unit-selector > div {
    display: grid;
    grid-template-columns: 1fr 52px;
}

.unit-selector select {
    border-radius: 4px 0 0 4px;
}

.unit-selector button {
    color: var(--paper);
    background: var(--ink);
    border: 0;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 700;
}

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

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

.plan-card {
    padding: 34px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 16px 45px rgba(38, 26, 20, 0.06);
}

.plan-card-head {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--red);
}

.plan-card-head span {
    color: var(--red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.plan-card-head h3 {
    margin: 7px 0 0;
    font-size: 22px;
}

.plan-card dl {
    margin-bottom: 0;
}

.plan-card dl > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
}

.plan-card dt {
    color: var(--ink-soft);
}

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

.amortization {
    margin-top: 22px;
}

.amortization summary {
    color: var(--red);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}

.amortization-wrap {
    margin-top: 14px;
    overflow-x: auto;
}

.amortization table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    font-size: 10px;
}

.amortization th,
.amortization td {
    padding: 8px;
    border: 1px solid var(--line);
    text-align: right;
}

.amortization th:first-child,
.amortization td:first-child {
    text-align: left;
}

.documents-section {
    background: var(--paper);
}

.documents-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 80px;
    align-items: start;
}

.documents-grid > div:first-child > p {
    color: var(--ink-soft);
}

.document-links {
    display: grid;
    gap: 10px;
    margin-top: 32px;
}

.document-links a {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--sand);
    border: 1px solid transparent;
    border-radius: 7px;
    transition: border-color 180ms ease, background 180ms ease;
}

.document-links a:hover {
    background: var(--paper);
    border-color: rgba(169, 0, 0, 0.3);
}

.document-links a > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--paper);
    background: var(--red);
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
}

.document-links strong {
    font-size: 12px;
}

.document-links small {
    color: var(--ink-soft);
    font-size: 9px;
}

.floor-plans {
    padding: 34px;
    background: var(--sand);
    border-radius: var(--radius);
}

.floor-plan-heading {
    margin-bottom: 22px;
}

.floor-plan-heading > span {
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.floor-plan-heading h3 {
    margin: 5px 0 0;
    font-size: 26px;
}

.floor-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.floor-plan-grid a {
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.floor-plan-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: var(--paper);
}

.floor-plan-grid a > span {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-top: 1px solid var(--line);
    font-size: 11px;
    font-weight: 600;
}

.floor-plan-grid a > span b {
    color: var(--red);
}

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

    .main-menu {
        gap: 19px;
    }

    .main-menu a {
        font-size: 12px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-facts {
        justify-self: start;
    }

    .project-grid,
    .location-grid,
    .contact-grid,
    .unit-overview,
    .documents-grid {
        gap: 52px;
    }

    .project-image img {
        min-height: 500px;
    }

}

@media (max-width: 900px) {
    .section {
        padding: 88px 0;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

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

    .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
        opacity: 0;
    }

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

    .main-menu {
        position: fixed;
        top: 84px;
        right: 0;
        left: 0;
        max-height: calc(100vh - 84px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px;
        overflow-y: auto;
        background: var(--paper);
        border-top: 1px solid var(--line);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .main-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-menu a {
        padding: 13px 6px;
        border-bottom: 1px solid var(--line);
    }

    .main-menu a::after {
        display: none;
    }

    .main-menu .commercial-link {
        margin-top: 13px;
        padding: 13px 17px;
        text-align: center;
    }

    .hero {
        min-height: 760px;
    }

    .hero-content {
        padding-top: 64px;
        padding-bottom: 70px;
    }

    .hero-copy {
        align-self: end;
    }

    .hero-facts {
        grid-template-columns: repeat(3, minmax(95px, 1fr));
    }

    .hero-scroll {
        display: none;
    }

    .project-grid,
    .location-grid,
    .contact-grid,
    .unit-overview,
    .documents-grid {
        grid-template-columns: 1fr;
    }

    .project-visual {
        width: calc(100% - 20px);
    }

    .project-quote {
        right: -20px;
    }

    .section-heading-split {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .acquisition-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .filter-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-form .button {
        width: 100%;
    }

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

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

    .appointment-form {
        max-width: 650px;
    }

    .footer-grid {
        gap: 28px;
    }

    .unit-overview {
        grid-template-columns: 1fr;
    }

    .unit-summary {
        position: static;
    }

    .payment-plans {
        grid-template-columns: 1fr;
    }

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

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

    body {
        font-size: 15px;
    }

    .section {
        padding: 72px 0;
    }

    .site-header {
        height: 72px;
    }

    .brand img {
        height: 42px;
    }

    .main-menu {
        top: 72px;
        max-height: calc(100vh - 72px);
    }

    .hero {
        min-height: calc(100svh - 72px);
    }

    .hero-media {
        background-position: 66% center;
    }

    .hero-overlay {
        background:
            linear-gradient(0deg, rgba(89, 0, 0, 0.95) 0%, rgba(103, 0, 0, 0.78) 52%, rgba(12, 12, 12, 0.18) 100%);
    }

    .hero-content {
        min-height: calc(100svh - 72px);
        padding-top: 96px;
        padding-bottom: 38px;
    }

    .hero-copy h1 {
        font-size: clamp(43px, 14vw, 67px);
    }

    .hero-copy p {
        font-size: 15px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-facts {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-facts div {
        padding: 14px 10px;
    }

    .hero-facts strong {
        font-size: 22px;
    }

    .hero-facts span {
        font-size: 7px;
    }

    .project-copy h2,
    .section-heading h2,
    .location-copy h2,
    .contact-copy h2,
    .documents-grid h2 {
        font-size: 38px;
    }

    .project-grid {
        gap: 48px;
    }

    .project-visual {
        width: 100%;
        padding-bottom: 85px;
    }

    .project-image img {
        min-height: 420px;
    }

    .project-quote {
        right: 12px;
        bottom: 0;
        width: calc(100% - 24px);
    }

    .video-frame video {
        aspect-ratio: 4 / 3;
    }

    .video-badge {
        top: 12px;
        right: 12px;
    }

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

    .amenity-card {
        min-height: 190px;
    }

    .acquisition-section {
        padding: 72px 0;
    }

    .acquisition-grid h2 {
        font-size: 41px;
    }

    .payment-card {
        padding: 25px;
    }

    .availability-heading {
        gap: 28px;
    }

    .availability-stats {
        width: 100%;
    }

    .filter-form {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .clear-filters {
        justify-self: start;
    }

    .table-note {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .availability-table-wrap {
        overflow: visible;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .availability-table,
    .availability-table tbody,
    .availability-table tr,
    .availability-table td {
        display: block;
        width: 100%;
    }

    .availability-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .availability-table tbody tr {
        margin-bottom: 14px;
        padding: 9px 16px 15px;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: 10px;
        box-shadow: 0 10px 28px rgba(43, 29, 23, 0.05);
    }

    .availability-table tbody tr.is-sold {
        background: #f9f7f5;
    }

    .availability-table td {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 18px;
        padding: 8px 0;
        border-bottom: 1px solid var(--line);
        text-align: right;
    }

    .availability-table td::before {
        content: attr(data-label);
        color: var(--ink-soft);
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-align: left;
        text-transform: uppercase;
    }

    .availability-table td:first-child strong {
        color: var(--red);
        font-size: 22px;
    }

    .availability-table td:last-child {
        display: block;
        padding-top: 13px;
        border-bottom: 0;
        text-align: left;
    }

    .availability-table td:last-child::before {
        display: none;
    }

    .availability-table .status {
        width: 100%;
    }

    .data-notice {
        padding: 30px 20px;
    }

    .location-map {
        margin-top: 34px;
    }

    .location-map figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding: 15px 16px;
    }

    .contact-cards,
    .form-row {
        grid-template-columns: 1fr;
    }

    .appointment-form {
        padding: 26px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 42px;
        padding-bottom: 38px;
    }

    .footer-social,
    .footer-brand {
        justify-content: center;
    }

    .footer-copy {
        text-align: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 9px;
        text-align: center;
    }

    .wa-container {
        right: 14px;
        bottom: 14px;
    }

    .wa-button {
        width: 52px;
        height: 52px;
    }

    .wa-button img {
        width: 28px;
        height: 28px;
    }

    .wa-text {
        padding: 7px 12px;
        font-size: 13px;
    }

    .privacy-head {
        padding: 24px 20px 17px;
    }

    .privacy-body {
        padding: 22px 20px 30px;
    }

    .unit-title-band {
        padding: 52px 0 46px;
    }

    .breadcrumbs {
        margin-bottom: 34px;
    }

    .unit-title-band h1 {
        font-size: 43px;
    }

    .unit-main-image img {
        height: auto;
    }

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

    .unit-specs > div {
        gap: 14px;
    }

    .plan-card {
        padding: 24px 19px;
    }

    .plan-card dl > div {
        gap: 10px;
    }

    .document-links a {
        grid-template-columns: 46px 1fr;
    }

    .document-links small {
        display: none;
    }

    .floor-plans {
        padding: 24px 17px;
    }

    .floor-plan-grid {
        grid-template-columns: 1fr;
    }
}

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

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