:root {
    --espresso: #3B2A23;
    --coffee: #765846;
    --caramel: #B8895B;
    --cream: #F5F0E8;
    --beige: #E8DED1;
    --dark: #211D1A;
    --white: #FFFDF9;
    --muted: #786E68;
}

/* =========================
   BASE / RESET
   ========================= */

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    color: var(--dark);
    background: var(--white);
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
        outline: 2px solid var(--caramel);
        outline-offset: 3px;
    }

/* Evita que los anclajes queden ocultos debajo del header sticky. */
section[id] {
    scroll-margin-top: 92px;
}

/* =========================
   GLOBAL / TIPOGRAFIA
   ========================= */

.public-section-title {
    margin: 0;
    color: var(--espresso);
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.08;
}

.public-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--caramel);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

    .public-eyebrow::before {
        content: "";
        width: 25px;
        height: 1px;
        background: var(--caramel);
    }

/* =========================
   HEADER / NAVBAR
   ========================= */

.public-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 253, 249, 0.96);
    border-bottom: 1px solid var(--beige);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.public-navbar {
    min-height: 78px;
}

.public-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--espresso);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

    .public-brand:hover {
        color: var(--espresso);
    }

.public-brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    color: var(--white);
    background: var(--espresso);
    font-size: 1rem;
}

.public-navbar .nav-link {
    position: relative;
    margin: 0 8px;
    padding: 10px 4px !important;
    color: #5E534D;
    font-size: 0.9rem;
    font-weight: 500;
}

    .public-navbar .nav-link:hover {
        color: var(--espresso);
    }

    .public-navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 4px;
        right: 4px;
        bottom: 4px;
        height: 1px;
        background: var(--caramel);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.2s ease;
    }

    .public-navbar .nav-link:hover::after {
        transform: scaleX(1);
    }

.public-nav-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 7px;
    color: var(--white);
    background: var(--espresso);
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .public-nav-book:hover {
        color: var(--white);
        background: var(--coffee);
        transform: translateY(-1px);
    }

.navbar-toggler {
    padding: 5px;
    border: 0;
    color: var(--espresso);
    background: transparent;
    box-shadow: none !important;
    font-size: 1.7rem;
}

/* =========================
   HOME - HERO
   ========================= */

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: var(--cream);
}

    .home-hero::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        left: -210px;
        bottom: -210px;
        border: 1px solid rgba(184, 137, 91, 0.18);
        border-radius: 50%;
    }

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.home-hero h1 {
    max-width: 700px;
    margin: 0;
    color: var(--espresso);
    font-family: "Playfair Display", serif;
    font-size: clamp(3.2rem, 6vw, 5.6rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

    .home-hero h1 span {
        display: block;
        color: var(--caramel);
    }

.home-hero-description {
    max-width: 610px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.home-primary-button,
.home-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 7px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.home-primary-button {
    color: var(--white);
    background: var(--espresso);
}

    .home-primary-button:hover {
        color: var(--white);
        background: var(--coffee);
        transform: translateY(-2px);
    }

.home-secondary-button {
    border: 1px solid #D5C8BC;
    color: var(--espresso);
    background: transparent;
}

    .home-secondary-button:hover {
        color: var(--espresso);
        border-color: var(--caramel);
        background: var(--white);
    }

.home-hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 38px;
    color: #6B605A;
    font-size: 0.78rem;
    font-weight: 500;
}

    .home-hero-benefits span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

    .home-hero-benefits i {
        color: var(--caramel);
    }

/* Hero visual / bloque de marca */
.home-hero-visual {
    position: relative;
    display: flex;
    min-height: 480px;
    padding: 55px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
    color: var(--white);
    background: var(--espresso);
}

    .home-hero-visual::before {
        content: "";
        position: absolute;
        width: 310px;
        height: 310px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 50%;
    }

    .home-hero-visual::after {
        content: "";
        position: absolute;
        width: 230px;
        height: 230px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
    }

.home-hero-monogram {
    position: relative;
    z-index: 2;
    display: flex;
    width: 85px;
    height: 85px;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    font-size: 2rem;
}

.home-hero-visual-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

    .home-hero-visual-text span,
    .home-hero-visual-text small {
        display: block;
        color: #C7B7AD;
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.25em;
    }

    .home-hero-visual-text strong {
        display: block;
        margin: 8px 0 12px;
        font-family: "Playfair Display", serif;
        font-size: 2.1rem;
        font-weight: 600;
    }

.home-hero-decoration {
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--caramel);
    opacity: 0.16;
}

/* =========================
   HOME - CABECERA DE SECCIONES
   ========================= */

.home-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

    .home-section-heading > p {
        max-width: 430px;
        margin: 0;
        color: var(--muted);
        font-size: 0.92rem;
        line-height: 1.7;
    }

/* =========================
   HOME - SERVICIOS
   ========================= */

.home-services {
    padding: 100px 0;
    background: var(--white);
}

.home-service-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--beige);
    border-radius: 10px;
    background: var(--white);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

    .home-service-card:hover {
        transform: translateY(-4px);
        border-color: #D7C5B4;
        box-shadow: 0 18px 45px rgba(59, 42, 35, 0.08);
    }

.home-service-icon {
    display: flex;
    height: 115px;
    align-items: center;
    justify-content: center;
    color: var(--caramel);
    background: var(--cream);
    font-size: 2rem;
}

.home-service-content {
    padding: 25px;
}

.home-service-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

    .home-service-title h3 {
        margin: 0;
        color: var(--espresso);
        font-family: "Playfair Display", serif;
        font-size: 1.35rem;
        font-weight: 700;
    }

    .home-service-title strong {
        flex-shrink: 0;
        color: var(--caramel);
        font-size: 0.95rem;
    }

.home-service-content > p {
    min-height: 50px;
    margin: 15px 0 22px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.65;
}

.home-service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 18px;
    border-top: 1px solid var(--beige);
}

    .home-service-footer span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #897B73;
        font-size: 0.78rem;
    }

    .home-service-footer a {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: var(--espresso);
        font-size: 0.8rem;
        font-weight: 700;
    }

        .home-service-footer a:hover {
            color: var(--caramel);
        }

.home-empty-state {
    padding: 60px 20px;
    border: 1px dashed var(--beige);
    text-align: center;
    color: var(--muted);
}

    .home-empty-state i {
        display: block;
        margin-bottom: 12px;
        color: var(--caramel);
        font-size: 2rem;
    }

    .home-empty-state p {
        margin: 0;
    }

/* =========================
   HOME - EQUIPO
   ========================= */

.home-team {
    padding: 100px 0;
    background: var(--cream);
}

.home-team-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #DED1C5;
    border-radius: 10px;
    background: var(--white);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .home-team-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 45px rgba(59, 42, 35, 0.08);
    }

.home-team-avatar {
    height: 290px;
    overflow: hidden;
    background: var(--espresso);
}

    .home-team-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.home-team-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: 4rem;
    background: radial-gradient(circle at center, rgba(184, 137, 91, 0.28), transparent 55%), var(--espresso);
}

.home-team-content {
    padding: 25px;
}

    .home-team-content h3 {
        margin: 0;
        color: var(--espresso);
        font-family: "Playfair Display", serif;
        font-size: 1.45rem;
        font-weight: 700;
    }

.home-team-specialty {
    display: block;
    margin-top: 6px;
    color: var(--caramel);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.home-team-content > p {
    min-height: 55px;
    margin: 16px 0 22px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.65;
}

.home-team-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 17px;
    border-top: 1px solid var(--beige);
}

    .home-team-footer span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        min-width: 0;
        color: #897B73;
        font-size: 0.78rem;
        overflow-wrap: anywhere;
    }

    .home-team-footer a {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        flex-shrink: 0;
        color: var(--espresso);
        font-size: 0.8rem;
        font-weight: 700;
    }

        .home-team-footer a:hover {
            color: var(--caramel);
        }

/* =========================
   HOME - GALERIA
   ========================= */

.home-gallery {
    padding: 100px 0;
    background: var(--espresso);
}

    .home-gallery .public-section-title {
        color: var(--white);
    }

    .home-gallery .home-section-heading > p {
        color: #C7B8AF;
    }

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 260px;
    gap: 12px;
}

.home-gallery-item {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: #251A15;
    cursor: pointer;
}

.home-gallery-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.3s ease;
}

.home-gallery-item:hover img {
    transform: scale(1.04);
    filter: brightness(0.72);
}

.home-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: var(--white);
    background: linear-gradient(to top, rgba(33, 29, 26, 0.78), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.home-gallery-item:hover .home-gallery-overlay,
.home-gallery-item:focus-visible .home-gallery-overlay {
    opacity: 1;
}

.home-gallery-overlay > span {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(33, 29, 26, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.home-gallery-overlay strong {
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 600;
}

/* Lightbox */
.home-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(20, 15, 12, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    .home-gallery-lightbox.open {
        display: flex;
    }

.home-gallery-lightbox-content {
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    text-align: center;
}

    .home-gallery-lightbox-content img {
        max-width: 100%;
        max-height: 78vh;
        margin: 0 auto;
        object-fit: contain;
    }

    .home-gallery-lightbox-content p {
        margin: 18px 0 0;
        color: #D8CCC4;
        font-size: 0.9rem;
    }

.home-gallery-lightbox-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    background: transparent;
    font-size: 1.15rem;
}

    .home-gallery-lightbox-close:hover {
        background: rgba(255, 255, 255, 0.08);
    }

/* =========================
   HOME - UBICACION
   ========================= */

.home-location {
    padding: 100px 0;
    background: var(--white);
}

.home-location-info {
    height: 100%;
    padding: 35px;
    border: 1px solid var(--beige);
    border-radius: 10px;
    background: var(--cream);
}

.home-location-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #DDD1C5;
}

    .home-location-item:first-child {
        padding-top: 0;
    }

.home-location-icon {
    display: flex;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--espresso);
    font-size: 1rem;
}

.home-location-item > div:last-child {
    min-width: 0;
}

.home-location-item span {
    display: block;
    margin-bottom: 4px;
    color: var(--caramel);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-location-item strong {
    display: block;
    color: var(--espresso);
    font-size: 0.94rem;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.home-location-item p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.home-location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

/* Mapa */
.home-map {
    height: 100%;
    min-height: 520px;
    overflow: hidden;
    border-radius: 10px;
    background: var(--espresso);
}

    .home-map iframe {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 520px;
        border: 0;
    }

.home-map-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 520px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    color: var(--white);
    background: radial-gradient(circle at center, rgba(184, 137, 91, 0.25), transparent 42%), var(--espresso);
}

.home-map-marker {
    display: flex;
    width: 75px;
    height: 75px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: var(--caramel);
    font-size: 2rem;
}

.home-map-placeholder strong {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
}

.home-map-placeholder > span {
    margin-top: 3px;
    color: #D8CCC4;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.home-map-placeholder small {
    max-width: 300px;
    margin-top: 25px;
    color: #AFA099;
    line-height: 1.6;
}

/* =========================
   HOME - CTA FINAL
   ========================= */

.home-final-cta {
    padding: 80px 0;
    color: var(--white);
    background: var(--espresso);
}

.home-final-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.home-final-cta .public-eyebrow {
    color: #D2A878;
}

    .home-final-cta .public-eyebrow::before {
        background: #D2A878;
    }

.home-final-cta h2 {
    max-width: 650px;
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 700;
    line-height: 1.08;
}

.home-final-cta p {
    margin: 15px 0 0;
    color: #C8BAB1;
    line-height: 1.7;
}

.home-final-cta-button {
    display: inline-flex;
    flex-shrink: 0;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border-radius: 7px;
    color: var(--espresso);
    background: var(--cream);
    font-size: 0.9rem;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .home-final-cta-button:hover {
        color: var(--espresso);
        background: var(--white);
        transform: translateY(-2px);
    }

/* =========================
   FOOTER
   ========================= */

.public-footer {
    padding: 65px 0 25px;
    color: #D8CCC4;
    background: var(--espresso);
}

.public-footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.public-footer-brand {
    margin-bottom: 18px;
    color: var(--white);
}

    .public-footer-brand:hover {
        color: var(--white);
    }

    .public-footer-brand .public-brand-icon {
        color: var(--espresso);
        background: var(--cream);
    }

.public-footer-content p {
    max-width: 390px;
    margin: 0;
    color: #BFAFA5;
    line-height: 1.7;
    font-size: 0.9rem;
}

.public-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

    .public-footer-links a {
        color: #D8CCC4;
        font-size: 0.87rem;
    }

        .public-footer-links a:hover {
            color: var(--white);
        }

.public-footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
}

    .public-footer-social a {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 50%;
        color: #D8CCC4;
        transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
    }

        .public-footer-social a:hover {
            color: var(--espresso);
            background: var(--cream);
            border-color: var(--cream);
            transform: translateY(-2px);
        }

.public-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9E8D83;
    font-size: 0.76rem;
}

/* =========================
   RESPONSIVE - TABLET / MENU
   <= 991.98px
   ========================= */

@media (max-width: 991.98px) {
    .public-navbar {
        min-height: 70px;
    }

    #publicNavbar {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        padding: 15px 0 22px;
    }

    .public-navbar .navbar-nav {
        align-items: stretch !important;
    }

    .public-navbar .nav-item {
        width: 100%;
    }

    .public-navbar .nav-link {
        width: 100%;
        margin: 0;
        padding: 10px 0 !important;
    }

    .public-nav-book {
        width: 100%;
    }

    .home-hero {
        padding: 70px 0;
    }

    .home-hero-visual {
        min-height: 360px;
        margin-top: 8px;
    }

    .home-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .home-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 230px;
    }

    .home-gallery-featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .home-map,
    .home-map iframe,
    .home-map-placeholder {
        min-height: 400px;
    }

    .home-final-cta-content {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================
   RESPONSIVE - MOVIL
   <= 767.98px
   ========================= */

@media (max-width: 767.98px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    section[id] {
        scroll-margin-top: 78px;
    }

    .public-section-title {
        font-size: clamp(2rem, 10vw, 2.7rem);
    }

    /* Hero */
    .home-hero {
        padding: 55px 0;
    }

    .home-hero-content {
        text-align: left;
    }

    .home-hero h1 {
        font-size: clamp(2.7rem, 13vw, 3.7rem);
        line-height: 1.02;
    }

    .home-hero-description {
        margin-top: 20px;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .home-hero-actions {
        flex-direction: column;
        margin-top: 28px;
    }

    .home-primary-button,
    .home-secondary-button {
        width: 100%;
    }

    .home-hero-benefits {
        flex-direction: column;
        gap: 10px;
        margin-top: 28px;
    }

    .home-hero-visual {
        min-height: 300px;
        padding: 35px 20px;
    }

        .home-hero-visual::before {
            width: 250px;
            height: 250px;
        }

        .home-hero-visual::after {
            width: 185px;
            height: 185px;
        }

    .home-hero-monogram {
        width: 72px;
        height: 72px;
        margin-bottom: 22px;
    }

    .home-hero-visual-text strong {
        font-size: 1.75rem;
    }

    /* Titulos de seccion */
    .home-section-heading {
        margin-bottom: 32px;
    }

    /* Servicios */
    .home-services {
        padding: 70px 0;
    }

    .home-service-content {
        padding: 22px 18px;
    }

    .home-service-title {
        gap: 12px;
    }

        .home-service-title h3 {
            font-size: 1.25rem;
        }

    .home-service-content > p {
        min-height: 0;
    }

    /* Equipo */
    .home-team {
        padding: 70px 0;
    }

    .home-team-avatar {
        height: 250px;
    }

    .home-team-content {
        padding: 22px 18px;
    }

        .home-team-content > p {
            min-height: 0;
        }

    .home-team-footer {
        align-items: flex-start;
    }

    /* Galeria */
    .home-gallery {
        padding: 70px 0;
    }

    .home-gallery-grid {
        gap: 10px;
    }

    .home-gallery-lightbox {
        padding: 20px;
    }

    .home-gallery-lightbox-close {
        top: 14px;
        right: 14px;
    }

    /* Ubicacion */
    .home-location {
        padding: 70px 0;
    }

    .home-location-info {
        padding: 25px 20px;
    }

    .home-location-item {
        gap: 13px;
    }

    .home-location-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .home-location-actions {
        flex-direction: column;
    }

        .home-location-actions a {
            width: 100%;
        }

    .home-map,
    .home-map iframe,
    .home-map-placeholder {
        min-height: 330px;
    }

    /* CTA */
    .home-final-cta {
        padding: 60px 0;
    }

    .home-final-cta-button {
        width: 100%;
    }

    /* Footer */
    .public-footer {
        padding-top: 50px;
    }

    .public-footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .public-footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .public-footer-bottom {
        flex-direction: column;
        line-height: 1.6;
    }
}

/* =========================
   RESPONSIVE - MOVIL PEQUENO
   <= 575.98px
   ========================= */

@media (max-width: 575.98px) {
    .public-brand {
        max-width: calc(100vw - 100px);
        font-size: 0.86rem;
        letter-spacing: 0.12em;
    }

    .public-brand-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .home-service-footer,
    .home-team-footer {
        flex-wrap: wrap;
    }

    .home-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .home-gallery-featured {
        grid-column: auto;
        grid-row: auto;
    }

    /* En touch no existe hover: mostramos una capa suave permanentemente. */
    .home-gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(33, 29, 26, 0.72), transparent 52%);
    }

    .home-gallery-lightbox-content img {
        max-height: 72vh;
    }

    .home-map-placeholder {
        padding: 28px 20px;
    }
}

/* =========================
   ACCESIBILIDAD / MOVIMIENTO
   ========================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
