.ca-hotel-page {
    font-family: 'Montserrat', sans-serif;
    color: #1f1f1f;
    background: #ffffff;
}

.ca-hotel-page h1,
.ca-hotel-page h2,
.ca-hotel-page h3,
.ca-hotel-page h4,
.ca-hotel-page h5,
.ca-hotel-page h6 {
    font-family: 'Fahkwang', serif;
    font-weight: 400;
}

.ca-hotel-container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.ca-hotel-hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    background-image: url("https://casaascenzi.it/wp-content/uploads/2026/06/salotto-accogliente.webp");
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.ca-hotel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.28));
}

.ca-hotel-hero-inner {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.ca-hotel-eyebrow {
    margin: 0 0 18px;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
}

.ca-hotel-hero h1,
.ca-section h2,
.ca-final-cta h2 {
    margin: 0 0 24px;
    line-height: 1.05;
    font-weight: 600;
}

.ca-hotel-hero h1 {
    max-width: 1200px;
    font-family: 'Fahkwang', serif;
    font-size: clamp(48px, 5.5vw, 72px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.ca-hotel-lead {
    max-width: 900px;
    margin: 0 0 34px;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 300;
}

.ca-hotel-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ca-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 24px;
    border-radius: 0;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 600;
}

.ca-btn-primary {
    background: #b89463;
    color: #000000;
}

.ca-btn-secondary {
    border: 1px solid rgba(255,255,255,.75);
    color: #ffffff;
}

.ca-section {
    padding: 95px 0;
}

.ca-section-soft {
    background: #f7f3ed;
}

.ca-section-dark {
    background: #1f1f1f;
    color: #ffffff;
}

.ca-section h2,
.ca-final-cta h2 {
    font-family: 'Fahkwang', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.ca-card h3 {
    font-family: 'Fahkwang', serif;
    font-size: 22px;
    font-weight: 500;
}

.ca-section p {
    font-size: 18px;
    line-height: 1.75;
}

.ca-section-intro {
    max-width: 760px;
    margin-bottom: 36px;
}

.ca-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
}

.ca-image-card img,
.ca-gallery-grid img {
    width: 100%;
    display: block;
    height: 520px;
    object-fit: cover;
}

.ca-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 38px;
}

.ca-card {
    background: #ffffff;
    padding: 30px;
    min-height: 230px;
}

.ca-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
}

.ca-card p {
    margin: 0;
    font-size: 16px;
}

.ca-text-link {
    display: inline-block;
    margin-top: 16px;
    color: #8b6a3d;
    font-weight: 600;
    text-decoration: underline;
}

.ca-comparison {
    display: grid;
    gap: 14px;
}

.ca-comparison div {
    padding: 22px;
    background: rgba(255,255,255,.08);
}

.ca-comparison strong {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
}

.ca-comparison span {
    line-height: 1.6;
}

.ca-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ca-links-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.ca-links-row a {
    color: #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
    text-decoration: none;
    padding-bottom: 4px;
}

.ca-faq {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.ca-faq details {
    background: #ffffff;
    padding: 24px 28px;
}

.ca-faq summary {
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
}

.ca-faq p {
    margin-bottom: 0;
}

.ca-final-cta {
    padding: 100px 0;
    text-align: center;
    background: #f7f3ed;
}

.ca-final-cta p {
    margin: 0 auto 30px;
    max-width: 640px;
    font-size: 18px;
    line-height: 1.7;
}

.ca-final-cta .ca-btn-primary {
    color: #000000;
}

@media (max-width: 900px) {
    .ca-two-col,
    .ca-gallery-grid,
    .ca-benefits-grid {
        grid-template-columns: 1fr;
    }

    .ca-two-col-reverse .ca-image-card {
        order: 2;
    }

    .ca-hotel-hero {
        min-height: 72vh;
    }

    .ca-image-card img,
    .ca-gallery-grid img {
        height: 360px;
    }
}

@media (max-width: 600px) {
    .ca-hotel-container {
        width: min(100% - 28px, 1120px);
    }

    .ca-section,
    .ca-final-cta {
        padding: 68px 0;
    }

    .ca-hotel-hero-inner {
        padding: 80px 0;
    }

    .ca-btn {
        width: 100%;
    }
}



.ca-hotel-page a.ca-btn-primary,
.ca-hotel-page a.ca-btn-primary:link,
.ca-hotel-page a.ca-btn-primary:visited,
.ca-hotel-page a.ca-btn-primary:hover,
.ca-hotel-page a.ca-btn-primary:focus,
.ca-hotel-page a.ca-btn-primary:active {
    color: #000000 !important;
}