.site-navbar {
    border-bottom: 1px solid var(--border);
    background: rgba(22, 18, 15, 0.84);
    backdrop-filter: blur(16px);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-navbar.is-scrolled {
    border-color: rgba(212, 192, 161, 0.32);
    background: rgba(18, 14, 11, 0.96);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
}

.site-navbar .container {
    min-height: 86px;
}

.brand-lockup {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: var(--cream);
    text-decoration: none;
}

.brand-logo {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.brand-lockup:hover .brand-logo {
    filter: drop-shadow(0 10px 22px rgba(212, 192, 161, 0.2));
    transform: rotate(-4deg) scale(1.04);
}

.brand-logo-lg {
    width: 76px;
    height: 76px;
}

.brand-copy strong,
.brand-copy small {
    display: block;
}

.brand-copy strong {
    margin: 0;
    font-size: 1.28rem;
}

.brand-copy small {
    color: var(--beige);
    font-family: var(--font-interface);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.site-navbar .nav-link {
    position: relative;
    padding: 0.85rem 0.8rem !important;
    color: var(--text);
    font-family: var(--font-interface);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.site-navbar .nav-link::after {
    position: absolute;
    right: 0.8rem;
    bottom: 0.55rem;
    left: 0.8rem;
    height: 1px;
    content: "";
    background: var(--beige);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.28s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.active {
    color: var(--beige);
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link:focus::after,
.site-navbar .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-toggler {
    border-color: var(--border);
    background: var(--beige);
}

.service-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--wood-deep);
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
    border-color: rgba(212, 192, 161, 0.7);
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.46);
    transform: translateY(-8px);
}

.service-media {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(20, 12, 9, 0.8));
    transition: opacity 0.35s ease;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.72) contrast(1.08);
    transition: transform 0.75s ease, filter 0.55s ease;
}

.service-card:hover img {
    filter: saturate(0.95) contrast(1.08);
    transform: scale(1.09);
}

.service-number {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 8px;
    color: var(--beige);
    font-size: 4rem;
    line-height: 1;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.65);
    transition: transform 0.35s ease;
}

.service-card:hover .service-number {
    transform: translateY(-5px);
}

.service-card-body {
    position: relative;
    padding: 30px;
}

.service-card h3 {
    font-size: 1.65rem;
}

.service-card p {
    margin-bottom: 24px;
}

.service-card-wide {
    display: grid;
    min-height: 330px;
    grid-template-columns: minmax(210px, 0.9fr) 1.1fr;
}

.service-card-wide .service-media {
    height: 100%;
    min-height: 330px;
}

.unit-card {
    display: grid;
    height: 100%;
    overflow: hidden;
    grid-template-rows: 300px minmax(0, 1fr);
    border: 1px solid rgba(212, 192, 161, 0.35);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 85% 75%, rgba(165, 78, 45, 0.12), transparent 35%),
        linear-gradient(145deg, #321814, var(--wood-deep));
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.unit-card:hover {
    border-color: rgba(212, 192, 161, 0.7);
    box-shadow: 0 32px 85px rgba(0, 0, 0, 0.5);
    transform: translateY(-8px);
}

.unit-map {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--charcoal);
}

.unit-map::after {
    position: absolute;
    inset: auto 0 0;
    height: 96px;
    content: "";
    pointer-events: none;
    background: linear-gradient(transparent, rgba(33, 23, 17, 0.94));
}

.unit-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.7) sepia(0.13) contrast(1.05);
    transition: filter 0.4s ease, transform 0.7s ease;
}

.unit-card:hover .unit-map iframe {
    filter: saturate(0.95) sepia(0.05) contrast(1.03);
    transform: scale(1.025);
}

.unit-number {
    position: absolute;
    z-index: 2;
    bottom: 10px;
    left: 28px;
    color: var(--beige);
    font-size: 4.2rem;
    line-height: 1;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.68);
}

.unit-content {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 44px 30px 30px;
}

.unit-content h3 {
    margin-bottom: 26px;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.unit-content address {
    display: grid;
    gap: 2px;
    margin: 0 0 12px;
    color: var(--cream);
    font-style: normal;
}

.unit-content address span {
    color: var(--muted);
}

.unit-route {
    display: inline-flex;
    gap: 5px;
    margin: 0 0 22px;
    color: var(--beige);
    font-family: var(--font-interface);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.unit-route:hover {
    color: var(--cream);
}

.unit-phone {
    display: block;
    margin-bottom: 28px;
    color: var(--beige);
    font-family: var(--font-interface);
    font-weight: 700;
    text-decoration: none;
}

.unit-actions {
    display: grid;
    grid-template-columns: minmax(190px, 0.9fr) minmax(230px, 1.1fr);
    gap: 12px;
    align-items: stretch;
}

.unit-status {
    display: flex;
    gap: 10px;
    min-height: 58px;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid rgba(98, 186, 105, 0.55);
    border-radius: 999px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.unit-card:hover .unit-status {
    border-color: rgba(98, 186, 105, 0.85);
    background: rgba(98, 186, 105, 0.06);
}

.status-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(98, 186, 105, 0.14);
    animation: statusPulse 2.2s infinite;
}

.unit-status strong,
.unit-status small {
    display: block;
    font-family: var(--font-interface);
}

.unit-status strong {
    color: var(--cream);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
}

.unit-status small {
    color: var(--muted);
    font-size: 0.64rem;
}

.btn-unit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    border: 0;
    color: var(--wood-deep);
    background: linear-gradient(135deg, #e5b66f, var(--beige));
    font-size: 0.7rem;
}

.btn-unit:hover {
    color: var(--wood-deep);
    background: var(--cream);
}

.pillar-card {
    height: 100%;
    padding: 34px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(56, 38, 27, 0.9), rgba(30, 30, 29, 0.96));
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.pillar-card:hover {
    border-color: rgba(212, 192, 161, 0.7);
    background: linear-gradient(145deg, rgba(98, 69, 47, 0.92), rgba(30, 30, 29, 0.96));
    transform: translateY(-7px);
}

.pillar-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--beige);
    background: var(--wood-deep);
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    color: var(--wood-deep);
    background: var(--beige);
    transform: rotate(-6deg) scale(1.05);
}

.booking-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 90% 10%, rgba(165, 78, 45, 0.2), transparent 35%),
        linear-gradient(145deg, #321814, var(--wood-deep));
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.booking-card:hover {
    border-color: rgba(212, 192, 161, 0.7);
    transform: translateY(-8px);
}

.booking-card img {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
}

.booking-card .eyebrow {
    justify-content: center;
}

.booking-card h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.booking-number {
    position: absolute;
    top: 18px;
    right: 24px;
    color: rgba(212, 192, 161, 0.18);
    font-size: 5rem;
    line-height: 1;
}

.floating-whatsapp {
    position: fixed;
    z-index: 80;
    right: 24px;
    bottom: calc(var(--demo-height) + 20px);
    display: inline-flex;
    gap: 9px;
    height: 54px;
    align-items: center;
    padding: 0 20px;
    border-radius: 999px;
    color: #102a16;
    background: #7fd98a;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
    font-family: var(--font-interface);
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
    color: #102a16;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.45);
    transform: translateY(-4px);
}

.demo-disclaimer {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    gap: 12px;
    height: var(--demo-height);
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-top: 1px solid rgba(212, 192, 161, 0.35);
    color: var(--cream);
    background: rgba(17, 13, 10, 0.97);
    backdrop-filter: blur(12px);
    font-family: var(--font-interface);
    font-size: 0.68rem;
    letter-spacing: 0.02em;
    text-align: center;
}

.demo-badge {
    padding: 3px 8px;
    border-radius: 999px;
    color: var(--wood-deep);
    background: var(--beige);
    font-weight: 900;
    letter-spacing: 0.12em;
}

.demo-credit {
    color: var(--beige);
    font-weight: 800;
}

.site-footer {
    padding: 82px 0 28px;
    border-top: 1px solid var(--border);
    background: #15110e;
}

.footer-copy {
    max-width: 500px;
}

.social-list {
    display: flex;
    gap: 10px;
}

.social-list a {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--beige);
    background: var(--wood-deep);
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.social-list a:hover {
    border-color: var(--beige);
    color: var(--wood-deep);
    background: var(--beige);
    transform: translateY(-4px) rotate(-4deg);
}

.footer-title {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    color: var(--muted);
    list-style: none;
}

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

.footer-links a:hover {
    color: var(--beige);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 58px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-family: var(--font-interface);
    font-size: 0.72rem;
}

/* Routed home cards */
.route-card {
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--text);
    background: linear-gradient(145deg, rgba(56, 38, 27, 0.96), rgba(25, 20, 17, 0.98));
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.route-card:hover {
    border-color: rgba(212, 192, 161, 0.72);
    color: var(--text);
    box-shadow: 0 30px 78px rgba(0, 0, 0, 0.48);
    transform: translateY(-9px);
}

.route-card-media {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
}

.route-card-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 25%, rgba(25, 17, 13, 0.88));
}

.route-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.65) contrast(1.08);
    transition: transform 0.75s ease, filter 0.5s ease;
}

.route-card:hover .route-card-media img {
    filter: saturate(0.95) contrast(1.08);
    transform: scale(1.08);
}

.route-card-number {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 8px;
    color: var(--beige);
    font-family: var(--font-brand);
    font-size: 4.6rem;
    line-height: 1;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.62);
    transition: transform 0.35s ease;
}

.route-card:hover .route-card-number {
    transform: translateY(-5px);
}

.route-card-body {
    display: grid;
    gap: 14px;
    padding: 30px;
}

.route-card-body strong {
    font-family: var(--font-brand);
    font-size: 1.75rem;
    line-height: 1.15;
}

.route-card-body > span:not(.eyebrow) {
    color: var(--muted);
}

.route-card-body em {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: var(--beige);
    font-family: var(--font-interface);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.route-card-body b {
    transition: transform 0.25s ease;
}

.route-card:hover .route-card-body b {
    transform: translate(3px, -3px);
}

.unit-heading-row {
    display: grid;
    min-height: 196px;
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: 18px;
    align-items: start;
}

.unit-heading-row > div:first-child {
    min-width: 0;
}

.unit-heading-row h3 {
    min-height: 2.16em;
    margin-bottom: 24px;
}

.unit-rating {
    display: grid;
    min-width: 118px;
    justify-items: end;
    color: var(--muted);
    font-family: var(--font-interface);
    font-size: 0.7rem;
}

.unit-rating i {
    margin-bottom: 3px;
    color: #f2bd4f;
}

.unit-rating strong {
    color: var(--cream);
    font-size: 1rem;
}

.unit-hours {
    margin: auto 0 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.unit-hours summary {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    color: var(--beige);
    cursor: pointer;
    font-family: var(--font-interface);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    list-style: none;
    text-transform: uppercase;
}

.unit-hours summary::-webkit-details-marker {
    display: none;
}

.unit-hours summary span {
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.unit-hours[open] summary span {
    transform: rotate(45deg);
}

.unit-hours-list {
    display: grid;
    gap: 8px;
    padding: 0 0 16px;
}

.unit-hours-list div {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-family: var(--font-interface);
    font-size: 0.72rem;
}

.unit-hours-list strong {
    color: var(--cream);
    font-weight: 700;
}

.unit-status.is-closed {
    border-color: rgba(181, 94, 76, 0.58);
}

.unit-status.is-closed .status-dot {
    background: #b55e4c;
    box-shadow: 0 0 0 5px rgba(181, 94, 76, 0.14);
    animation: none;
}

.unit-status.is-soon {
    border-color: rgba(220, 176, 90, 0.58);
}

.unit-status.is-soon .status-dot {
    background: #dcb05a;
    box-shadow: 0 0 0 5px rgba(220, 176, 90, 0.14);
}

.service-source-note {
    display: block;
    margin: -10px 0 22px;
    color: var(--beige);
    font-family: var(--font-interface);
    font-size: 0.66rem;
    line-height: 1.45;
}

.booking-address {
    min-height: 52px;
}

.booking-public-data {
    display: grid;
    gap: 8px;
    margin: 22px 0 26px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--muted);
    background: rgba(18, 14, 11, 0.42);
    font-family: var(--font-interface);
    font-size: 0.72rem;
}

.booking-public-data i {
    color: #f2bd4f;
}

.booking-public-data a {
    color: var(--beige);
    font-weight: 800;
    text-decoration: none;
}

.unit-card:hover .unit-status.is-closed {
    border-color: rgba(181, 94, 76, 0.82);
    background: rgba(181, 94, 76, 0.06);
}

.unit-card:hover .unit-status.is-soon {
    border-color: rgba(220, 176, 90, 0.82);
    background: rgba(220, 176, 90, 0.06);
}
