@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@400;500;600&display=swap');
:root {
    --bg:#fbfaf7;
    --ink:#24211e;
    --muted:#766f67;
    --sand:#d7c7ad;
    --accent:#8a6644;
    --white:#fff
}
* {
    box-sizing:border-box
}
body {
    margin:0;
    font-family:'Inter',Arial,sans-serif;
    background:var(--bg);
    color:var(--ink);
    line-height:1.55
}
a {
    color:inherit
}
h1,h2,h3,.section-title,.hero h1,.banner h1,.room-title h1 {
    font-family:'Cormorant Garamond',Georgia,serif;
    letter-spacing:.025em
}
header {
    position:sticky;
    top:0;
    background:rgba(251,250,247,.95);
    z-index:5;
    border-bottom:1px solid #e8e1d7
}
.top {
    max-width:1180px;
    margin:auto;
    padding:12px 22px;
    display:flex;
    align-items:center;
    gap:30px;
    justify-content:space-between
}
.brand img {
    height:58px;
    width:auto
}
nav {
    display:flex;
    gap:22px;
    flex-wrap:wrap
}
nav a {
    text-decoration:none;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:.12em
}
.hero {
    min-height:66vh;
    display:grid;
    place-items:center;
    text-align:center;
    color:white;
    background-size:cover;
    background-position:center;
    position:relative
}
.hero:before {
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.33)
}
.hero>* {
    position:relative
}
.hero h1 {
    font-size:clamp(42px,7vw,88px);
    line-height:.95;
    font-weight:400;
    margin:0;
    text-shadow:0 2px 18px #000
}
.hero p {
    font-size:20px;
    max-width:760px;
    margin:16px auto
}
.wrap {
    max-width:1180px;
    margin:auto;
    padding:70px 22px
}
.intro {
    font-size:20px;
    max-width:900px;
    margin:auto;
    text-align:center
}
.btn {
    display:inline-block;
    border:1px solid var(--accent);
    padding:12px 22px;
    text-decoration:none;
    letter-spacing:.08em;
    text-transform:uppercase;
    font-size:12px;
    margin-top:18px;
    background:var(--accent);
    color:white
}
.btn.alt {
    background:transparent;
    color:var(--accent)
}
.grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px
}
.card {
    background:white;
    border:1px solid #e6ddd0
}
.card img {
    width:100%;
    height:260px;
    object-fit:cover;
    display:block
}
.card .pad {
    padding:24px
}
.card h3 {
    font-size:26px;
    font-weight:400;
    margin:0 0 10px
}
.split {
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:42px;
    align-items:center
}
.split img {
    width:100%;
    height:520px;
    object-fit:cover
}
.section-title {
    text-align:center;
    font-size:42px;
    font-weight:400;
    margin:0 0 34px
}
.muted {
    color:var(--muted)
}
.features {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
    gap:16px;
    margin:24px 0
}
.feature {
    background:#fff;
    border:1px solid #e6ddd0;
    padding:15px
}
.gallery {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:12px
}
.gallery img {
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
    cursor:pointer
}
.banner {
    height:46vh;
    background-size:cover;
    background-position:center;
    display:grid;
    place-items:center;
    color:white;
    text-align:center;
    position:relative
}
.banner:before {
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.3)
}
.banner h1 {
    position:relative;
    font-size:60px;
    line-height:1;
    font-weight:400
}
.room-hero {
    height:70vh;
    background-size:cover;
    background-position:center;
    position:relative
}
.room-hero:before {
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.55),rgba(0,0,0,.08))
}
.room-title {
    position:absolute;
    left:8%;
    bottom:12%;
    color:white
}
.room-title h1 {
    font-size:70px;
    line-height:.95;
    font-weight:400;
    margin:0
}
.details {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
    gap:18px
}
.detail {
    padding:18px;
    background:#fff;
    border:1px solid #e6ddd0
}
.detail b {
    display:block;
    text-transform:uppercase;
    font-size:12px;
    color:var(--muted);
    letter-spacing:.08em
}
.amen-list {
    columns:2;
    margin:20px 0
}
footer {
    background:#25211d;
    color:#eee;
    margin-top:50px
}
.foot {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    padding-top:45px;
    padding-bottom:35px
}
.copy {
    text-align:center;
    padding:18px;
    border-top:1px solid rgba(255,255,255,.12);
    font-size:13px;
    color:#c9c0b6
}
.contactbox {
    background:white;
    padding:34px;
    border:1px solid #e6ddd0
}
.map {
    width:100%;
    height:360px;
    border:0;
    filter:grayscale(.2)
}
.lightbox {
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.88);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:10;
    padding:30px
}
.lightbox img {
    max-width:94vw;
    max-height:88vh
}
.lightbox.show {
    display:flex
}
@media(max-width:780px) {
    .top {
        display:block;
        text-align:center
    }
    .brand img {
        height:45px
    }
    nav {
        justify-content:center;
        margin-top:8px;
        gap:12px
    }
    .split,.foot {
        grid-template-columns:1fr
    }
    .hero {
        min-height:55vh
    }
    .banner h1,.room-title h1 {
        font-size:42px
    }
    .split img {
        height:330px
    }
    .amen-list {
        columns:1
    }
}
.lang-switch {
    display:flex;
    gap:8px;
    align-items:center;
    font-size:12px;
    letter-spacing:.08em;
    text-transform:uppercase
}
.lang-switch a {
    text-decoration:none;
    border:1px solid #d8cbb8;
    padding:4px 7px
}
.lang-switch .active {
    background:var(--accent);
    color:white;
    border-color:var(--accent)
}
@media(max-width:780px) {
    .lang-switch {
        justify-content:center;
        margin-top:8px
    }
}
/* Reconocimientos / Awards */
.awards  {
    padding-top: 30px;
    text-align: center;
}
.awards .section-title  {
    margin-bottom: 12px;
}
.awards p  {
    max-width: 760px;
    margin: 0 auto 28px;
    color: var(--muted);
}
.award-grid  {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
}
.award-card  {
    flex: 0 0 200px;
    width: 200px;
    height: 200px;
    background: #fff;
    border: 1px solid #e6ddd0;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.award-card img  {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.top {
    position:relative
}
.mobile-note {
    display:none
}
@media(max-width:780px) {
    body {
        font-size:16px
    }
    .top {
        padding:10px 14px
    }
    .brand img {
        height:42px
    }
    nav a {
        font-size:12px
    }
    .wrap {
        padding:44px 18px
    }
    .intro {
        font-size:18px
    }
    .card img,.gallery img {
        height:220px
    }
    .award-grid {
        display:flex;
        flex-wrap:nowrap;
        justify-content:center;
        gap:12px;
        overflow-x:auto;
        padding-bottom:8px
    }
    .award-card {
        flex:0 0 150px;
        width:150px;
        height:150px;
        margin:0;
        padding:10px
    }
    .award-card img {
        max-width:100%;
        max-height:100%;
        width:auto;
        height:auto
    }
    .hero h1 {
        font-size:44px
    }
    .hero p {
        font-size:17px;
        padding:0 12px
    }
    .btn {
        padding:11px 16px
    }
    .room-hero {
        height:55vh
    }
    .contactbox {
        padding:24px
    }
    .map {
        height:320px
    }
}
@media(max-width:420px) {
    nav {
        gap:9px
    }
    .lang-switch a {
        padding:4px 6px
    }
    .hero h1 {
        font-size:38px
    }
    .banner h1,.room-title h1 {
        font-size:36px
    }
    .grid {
        grid-template-columns:1fr
    }
    .award-grid {
        gap:8px
    }
    .award-card {
        flex-basis:112px;
        width:112px;
        height:112px;
        padding:8px
    }
}
.season-banner  {
    position: fixed;
    left: 50%;
    top: 480px;
    transform: translateX(-50%);
    width: min(920px, calc(100% - 32px));
    background: rgba(250, 250, 247, 0.97);
    color: var(--ink);
    border: 1px solid #d7c7ad;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    z-index: 9999;
    padding: 22px 56px 22px 28px;
    text-align: center;
}
.season-banner-content  {
    display: grid;
    gap: 8px;
}
.season-banner strong  {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--accent);
}
.season-banner span  {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink);
}
.season-banner-close  {
    position: absolute;
    top: 10px;
    right: 14px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}
.season-banner-close:hover  {
    color: var(--accent);
}
@media (max-width: 780px)  {
    .season-banner  {
        top: 480px;
        width: calc(100% - 22px);
        padding: 18px 44px 18px 18px;
    }
    .season-banner strong  {
        font-size: 24px;
    }
    .season-banner span  {
        font-size: 14px;
    }
}
.footer-contact-icons  {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 12px 0 16px;
}
.footer-contact-icons a  {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease;
}
.footer-contact-icons a:hover  {
    transform: translateY(-2px);
    opacity: .86;
}
.footer-contact-icons img  {
    width: 50px;
    height: 50px;
    display: block;
}
@media (max-width: 780px)  {
    .footer-contact-icons  {
        justify-content: center;
    }
}
/* Footer compartido */
#site-footer  {
    background: #25211d !important;
    color: #f4efe8 !important;
    margin-top: 50px !important;
    padding: 0 !important;
}
#site-footer .footer-inner  {
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 42px 22px 34px !important;
    display: grid !important;
    grid-template-columns: .95fr .85fr 1.45fr 1.25fr !important;
    gap: 34px !important;
    align-items: start !important;
}
#site-footer .footer-brand-text a  {
    color: #f4efe8 !important;
    text-decoration: none !important;
    display: inline-block !important;
    line-height: 1 !important;
    min-width: 180px !important;
}
#site-footer .footer-brand-posada,
#site-footer .footer-brand-place  {
    display: block !important;
    text-transform: uppercase !important;
    letter-spacing: .42em !important;
    font-size: 11px !important;
    margin-left: 5px !important;
    opacity: .9 !important;
}
#site-footer .footer-brand-name  {
    display: block !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    text-transform: uppercase !important;
    letter-spacing: .08em !important;
    font-size: 34px !important;
    line-height: .95 !important;
    margin: 4px 0 8px !important;
}
#site-footer .footer-nav  {
    display: grid !important;
    gap: 10px !important;
}
#site-footer .footer-nav a,
#site-footer .footer-contact-link  {
    color: #f4efe8 !important;
    text-decoration: none !important;
}
#site-footer .footer-nav a  {
    text-transform: uppercase !important;
    letter-spacing: .10em !important;
    font-size: 13px !important;
}
#site-footer .footer-contact-block h3  {
    margin: 0 0 14px !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    color: #f4efe8 !important;
}
#site-footer .footer-contact-link  {
    display: flex !important;
    align-items: center !important;
    gap: 13px !important;
    margin: 11px 0 !important;
    line-height: 1.25 !important;
    font-size: 15px !important;
    word-break: break-word !important;
}
#site-footer .footer-icon  {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #25211d !important;
}
#site-footer .footer-icon img  {
    width: 46px !important;
    height: 46px !important;
    display: block !important;
    object-fit: contain !important;
    background: #25211d !important;
}
#site-footer .footer-address p  {
    margin: 0 !important;
    line-height: 1.65 !important;
    color: #f4efe8 !important;
    font-size: 16px !important;
}
#site-footer .footer-nav a:hover,
#site-footer .footer-contact-link:hover  {
    color: #d7c7ad !important;
}
#site-footer .copy  {
    text-align: center !important;
    padding: 18px 22px !important;
    border-top: 1px solid rgba(255,255,255,.18) !important;
    font-size: 13px !important;
    color: #c9c0b6 !important;
}
@media (max-width: 900px)  {
    #site-footer .footer-inner  {
        grid-template-columns: 1fr 1fr !important;
    }
}
@media (max-width: 620px)  {
    #site-footer .footer-inner  {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    #site-footer .footer-brand-text a,
    #site-footer .footer-nav  {
        margin-left: auto !important;
        margin-right: auto !important;
        justify-items: center !important;
    }
    #site-footer .footer-contact-link  {
        justify-content: center !important;
    }
    #site-footer .footer-address p  {
        text-align: center !important;
    }
}