:root{
    --brand:#ad1119;
    --brand-dark:#781016;
    --brand-deep:#510b10;
    --ink:#202328;
    --muted:#6e7177;
    --paper:#ffffff;
    --soft:#f7f4f3;
    --border:rgba(37,39,43,.10);
    --gold:#c7a46b;
    --shadow:0 24px 65px rgba(32,20,20,.16);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;width:100%;min-height:100%;font-family:Inter,Segoe UI,Arial,sans-serif;color:var(--ink)}
body{background:#f6f3f2;overflow-x:hidden}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}

.page{
    width:100%;
    min-height:100svh;
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 13% 18%,rgba(173,17,25,.12),transparent 30%),
        radial-gradient(circle at 90% 10%,rgba(199,164,107,.15),transparent 27%),
        linear-gradient(135deg,#fff 0%,#fbf9f8 55%,#f1ecea 100%);
}

.page::before{
    content:"";
    position:absolute;
    width:520px;height:520px;
    right:-210px;top:85px;
    border:1px solid rgba(173,17,25,.08);
    border-radius:50%;
    box-shadow:0 0 0 70px rgba(173,17,25,.025),0 0 0 145px rgba(173,17,25,.018);
    pointer-events:none;
}

.site-header{
    width:100%;
    height:106px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px clamp(28px,5vw,92px);
    background:rgba(255,255,255,.86);
    border-bottom:1px solid rgba(173,17,25,.10);
    backdrop-filter:blur(18px);
    position:relative;
    z-index:20;
}

.logo{
    width:auto;
    height:64px;
    max-width:28vw;
    object-fit:contain;
    border-radius:8px;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.header-link{
    font-size:13px;
    font-weight:800;
    letter-spacing:.04em;
    color:#3d4046;
    padding:9px 16px;
    border-radius:999px;
    border:1px solid rgba(173,17,25,.12);
    background:#fff;
    transition:background .2s ease,color .2s ease,border-color .2s ease;
}

.header-link:hover,
.header-link.is-active{
    color:var(--brand);
    background:#faeeee;
    border-color:rgba(173,17,25,.18);
}

.header-note{
    display:flex;
    align-items:center;
    gap:11px;
    color:#54565b;
    font-size:13px;
    font-weight:700;
    letter-spacing:.02em;
}

.header-note .seal{
    width:38px;height:38px;border-radius:50%;
    display:grid;place-items:center;
    color:var(--brand);
    background:#faeeee;
    border:1px solid rgba(173,17,25,.12);
}

.header-note svg{width:19px;height:19px}

.hero{
    width:100%;
    min-height:calc(100svh - 106px);
    padding:clamp(34px,5vh,62px) clamp(28px,5vw,92px) 30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    position:relative;
    z-index:2;
}

.hero-top{
    text-align:center;
    max-width:920px;
    margin:0 auto clamp(28px,4vh,46px);
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:15px;
    color:var(--brand);
    text-transform:uppercase;
    letter-spacing:.20em;
    font-size:12px;
    font-weight:900;
}

.eyebrow::before,.eyebrow::after{
    content:"";
    width:34px;height:1px;background:rgba(173,17,25,.45)
}

.hero h1{
    margin:0;
    font-size:clamp(38px,4.3vw,68px);
    line-height:1.03;
    letter-spacing:-.045em;
    font-weight:800;
}

.hero h1 span{
    color:var(--brand);
    position:relative;
}

.hero p{
    margin:18px auto 0;
    max-width:720px;
    color:var(--muted);
    font-size:clamp(15px,1.3vw,19px);
    line-height:1.7;
}

.selector{
    width:min(1380px,100%);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:clamp(20px,2.6vw,38px);
    justify-content:center;
    justify-items:stretch;
}

.selector.selector--single{
    width:min(720px,100%);
    grid-template-columns:minmax(0,1fr);
}

.stay-card{
    min-height:390px;
    position:relative;
    border-radius:28px;
    overflow:hidden;
    box-shadow:var(--shadow);
    border:1px solid rgba(255,255,255,.5);
    isolation:isolate;
    background:#333;
    transition:transform .35s ease,box-shadow .35s ease;
}

.stay-card:hover{
    transform:translateY(-7px);
    box-shadow:0 32px 78px rgba(45,23,23,.22);
}

.stay-card.is-disabled{
    cursor:default;
    opacity:.92;
}

.stay-card.is-disabled:hover{
    transform:none;
    box-shadow:var(--shadow);
}

.stay-card .photo{
    position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
    transition:transform .65s cubic-bezier(.2,.8,.2,1);
}

.stay-card:hover .photo{transform:scale(1.045)}
.stay-card.is-disabled:hover .photo{transform:none}

.stay-card::after{
    content:"";
    position:absolute;inset:0;
    background:
        linear-gradient(90deg,rgba(20,17,18,.78) 0%,rgba(42,22,24,.56) 42%,rgba(20,17,18,.08) 78%),
        linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.40));
    z-index:1;
}

.card-content{
    position:relative;
    z-index:3;
    width:min(56%,440px);
    min-height:390px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:38px 0 38px clamp(28px,3vw,48px);
    color:#fff;
}

.gender-icon{
    width:52px;height:52px;
    border-radius:16px;
    display:grid;place-items:center;
    margin-bottom:22px;
    background:rgba(255,255,255,.13);
    border:1px solid rgba(255,255,255,.28);
    backdrop-filter:blur(8px);
}

.gender-icon svg{width:27px;height:27px}

.card-label{
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.18em;
    color:#f5cfd1;
    margin-bottom:8px;
}

.card-content h2{
    margin:0;
    font-size:clamp(27px,2.25vw,40px);
    line-height:1.1;
    letter-spacing:-.03em;
}

.card-content p{
    margin:12px 0 23px;
    font-size:14px;
    line-height:1.6;
    color:rgba(255,255,255,.82);
    max-width:330px;
}

.book-btn{
    width:max-content;
    min-width:210px;
    display:inline-flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
    padding:15px 17px 15px 20px;
    border-radius:999px;
    color:var(--brand-dark);
    background:#fff;
    font-size:14px;
    font-weight:900;
    letter-spacing:.01em;
    box-shadow:0 14px 35px rgba(0,0,0,.19);
    transition:background .2s ease,color .2s ease,transform .2s ease;
}

.book-btn .arrow{
    width:31px;height:31px;border-radius:50%;
    display:grid;place-items:center;
    color:#fff;
    background:var(--brand);
}

.book-btn svg{width:16px;height:16px}
.stay-card:hover .book-btn{background:var(--brand);color:#fff;transform:translateX(3px)}
.stay-card:hover .book-btn .arrow{background:#fff;color:var(--brand)}
.stay-card.is-disabled:hover .book-btn{background:#fff;color:var(--brand-dark);transform:none}
.stay-card.is-disabled:hover .book-btn .arrow{background:var(--brand);color:#fff}

.badges{
    width:min(1180px,100%);
    margin:clamp(24px,3vh,35px) auto 0;
    padding:15px 22px;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    background:rgba(255,255,255,.82);
    border:1px solid var(--border);
    border-radius:20px;
    box-shadow:0 13px 35px rgba(38,26,26,.08);
    backdrop-filter:blur(14px);
}

.badge{
    min-height:55px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:11px;
    padding:8px 18px;
    border-right:1px solid rgba(40,40,40,.09);
}

.badge:last-child{border-right:0}
.badge svg{width:20px;height:20px;color:var(--brand);flex:none}
.badge strong{display:block;font-size:13px}
.badge span{display:block;font-size:11px;color:#85878b;margin-top:2px}

.contact-grid{
    width:min(1100px,100%);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:clamp(16px,2.2vw,24px);
}

.contact-card{
    background:rgba(255,255,255,.88);
    border:1px solid var(--border);
    border-radius:24px;
    padding:28px 26px 26px;
    box-shadow:0 18px 40px rgba(38,26,26,.08);
    backdrop-filter:blur(14px);
}

.contact-card__icon{
    width:48px;height:48px;
    border-radius:14px;
    display:grid;place-items:center;
    margin-bottom:18px;
    color:var(--brand);
    background:#faeeee;
    border:1px solid rgba(173,17,25,.12);
}

.contact-card__icon svg{width:22px;height:22px}

.contact-card h2{
    margin:0 0 10px;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.16em;
    color:var(--brand);
}

.contact-card address,
.contact-card p{
    margin:0;
    font-style:normal;
    font-size:15px;
    line-height:1.7;
    color:#3d4046;
}

.contact-card a{
    color:var(--brand-dark);
    font-weight:700;
    word-break:break-word;
}

.contact-card a:hover{text-decoration:underline}

.footer{
    margin-top:20px;
    text-align:center;
    color:#8a8584;
    font-size:11px;
    letter-spacing:.02em;
}

.footer b{color:var(--brand)}
.footer a{color:var(--brand);font-weight:700}
.footer a:hover{text-decoration:underline}
.footer-sep{margin:0 8px;color:#c4bfbe}

@media(max-width:1050px){
    .site-header{height:92px;padding:15px 28px}
    .logo{height:56px;width:auto;max-width:30vw}
    .hero{min-height:calc(100svh - 92px);padding:36px 28px 28px}
    .stay-card,.card-content{min-height:355px}
    .card-content{width:63%}
    .badges{grid-template-columns:repeat(2,1fr)}
    .badge:nth-child(2){border-right:0}
    .badge:nth-child(-n+2){border-bottom:1px solid rgba(40,40,40,.09)}
    .contact-grid{grid-template-columns:1fr}
}

@media(max-width:760px){
    .page::before{display:none}
    .site-header{
        height:auto;
        min-height:82px;
        padding:12px 18px;
    }
    .logo{height:48px;width:auto;max-width:38vw}
    .header-note span:not(.seal){display:none}
    .header-note .seal{width:36px;height:36px}
    .header-link{padding:8px 12px;font-size:12px}

    .hero{
        min-height:auto;
        padding:32px 16px 24px;
    }

    .hero-top{margin-bottom:25px}
    .eyebrow{font-size:10px;letter-spacing:.15em}
    .eyebrow::before,.eyebrow::after{width:20px}
    .hero h1{font-size:clamp(34px,10vw,48px)}
    .hero p{font-size:14px;margin-top:14px}

    .selector{grid-template-columns:1fr;gap:17px}
    .stay-card{min-height:350px;border-radius:23px}
    .card-content{
        width:72%;
        min-height:350px;
        padding:28px 0 28px 24px;
    }
    .stay-card::after{
        background:
            linear-gradient(90deg,rgba(22,16,17,.83) 0%,rgba(35,17,19,.63) 50%,rgba(20,17,18,.08) 92%),
            linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.38));
    }
    .card-content p{font-size:13px;margin-bottom:19px}
    .book-btn{min-width:194px;font-size:13px;padding:13px 14px 13px 18px}
    .badges{grid-template-columns:1fr;margin-top:20px;padding:5px 16px}
    .badge{
        justify-content:flex-start;
        border-right:0;
        border-bottom:1px solid rgba(40,40,40,.09);
        padding:12px 6px;
    }
    .badge:nth-child(-n+2){border-bottom:1px solid rgba(40,40,40,.09)}
    .badge:last-child{border-bottom:0}
}

@media(max-width:460px){
    .card-content{width:86%}
    .stay-card::after{
        background:linear-gradient(90deg,rgba(26,15,17,.87),rgba(39,19,21,.58) 72%,rgba(20,17,18,.15));
    }
}

@media(prefers-reduced-motion:reduce){
    *{scroll-behavior:auto!important}
    .stay-card,.stay-card .photo,.book-btn,.header-link{transition:none!important}
}
