
/* ══════════════════════════════════════════════════════
   PLATFORM BADGES
══════════════════════════════════════════════════════ */
.platform-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 40px auto 20px;
}
.platform-badge {
    text-align: center;
    padding: 0 35px;
}
.platform-score {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: #C8A96E;
    margin-bottom: 5px;
}
.platform-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1C1714;
    margin-bottom: 4px;
}
.platform-sub {
    display: block;
    font-size: 0.72rem;
    color: #9a8a7a;
}
.platform-divider {
    width: 1px;
    height: 50px;
    background: #ede8e0;
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .platform-badge { padding: 10px 18px; }
    .platform-divider { display: none; }
    .platform-badges { gap: 10px; }
}

/* ══════════════════════════════════════════════════════
   GALLERY GRID
══════════════════════════════════════════════════════ */
.gallery-category {
    padding: 60px 4% 0;
}
.gallery-category-header {
    text-align: center;
    margin-bottom: 32px;
}
.gallery-category-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1C1714;
    margin: 10px 0 0;
}
.gallery-grid {
    columns: 3;
    column-gap: 10px;
    padding: 0 0 10px;
}
.gallery-grid img {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    break-inside: avoid;
    cursor: pointer;
    transition: transform 0.5s ease, opacity 0.3s;
}
.gallery-grid img:hover { transform: scale(1.04); opacity: 0.92; }
/* Quando la gallery è diretta figlia di .gallery-section (vecchio stile flat) */
.gallery-section > .gallery-grid { padding: 50px 4%; }
@media (max-width: 900px) {
    .gallery-grid { columns: 2; column-gap: 8px; }
    .gallery-grid img { margin-bottom: 8px; }
}
@media (max-width: 600px) {
    .gallery-category { padding: 40px 3% 0; }
    .gallery-grid { columns: 2; column-gap: 6px; }
    .gallery-grid img { margin-bottom: 6px; }
    .gallery-category-header h2 { font-size: 1.4rem; }
}

/* ══════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════ */
.cta-section {
    position: relative;
    padding: 120px 5%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    text-align: center;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(28,23,20,0.52);
    z-index: 1;
}
.cta-inner { position: relative; z-index: 2; color: #fff; }
.cta-inner .hero-label { color: #C8A96E; }
.cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fff;
    margin: 16px 0 30px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
    .cta-section { background-attachment: scroll; padding: 80px 5%; }
    .cta-inner h2 { font-size: 1.8rem; }
}

/* ══════════════════════════════════════════════════════
   SECTION HEADER GENERIC
══════════════════════════════════════════════════════ */
.section-header, .section-title {
    text-align: center;
    padding: 40px 5% 10px;
}
.section-header h2, .section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #1C1714;
    margin-bottom: 16px;
}
.section-header p, .section-title p {
    font-size: 0.95rem;
    color: #6a5f55;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ══════════════════════════════════════════════════════
   FEATURE BOX HOVER
══════════════════════════════════════════════════════ */
.feature-box {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}


/* ══════════════════════════════════════════════════════
   HERO MOBILE
══════════════════════════════════════════════════════ */
.hero-content h1 {
    text-shadow: 0 2px 15px rgba(0,0,0,0.65), 0 0 40px rgba(0,0,0,0.4) !important;
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem !important; }
    .hero-subtitle { font-size: 0.75rem !important; letter-spacing: 3px !important; }
    .hero-btn { padding: 12px 28px !important; font-size: 0.72rem !important; }
    .split-section { min-height: auto !important; }
    .split-section:not(.split-reverse) { flex-direction: column; }
    .split-section.split-reverse { flex-direction: column-reverse; }
    .split-image { height: 58vw !important; min-height: unset !important; max-height: 340px !important; width: 100% !important; }
    .split-text { padding: 36px 6% 40px !important; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.1rem !important; }
}
@media (max-width: 1024px) and (min-width: 769px) {
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════
   ESPERIENZE — SEPARATORE DESTINAZIONI
══════════════════════════════════════════════════════ */
.exp-destinazioni-sep {
    text-align: center;
    padding: 50px 5% 10px;
    position: relative;
}
.exp-destinazioni-sep::before,
.exp-destinazioni-sep::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28%;
    height: 1px;
    background: #C8A96E;
    opacity: 0.4;
}
.exp-destinazioni-sep::before { left: 5%; }
.exp-destinazioni-sep::after  { right: 5%; }
.exp-destinazioni-sep span {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #C8A96E;
    background: #fff;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .exp-destinazioni-sep::before,
    .exp-destinazioni-sep::after { width: 15%; }
    .exp-destinazioni-sep { padding: 36px 5% 6px; }
}

/* ══════════════════════════════════════════════════════
   ESPERIENZE IN VILLA
══════════════════════════════════════════════════════ */
.exp-in-villa {
    padding: 90px 5%;
    background: #f9f6f0;
}
.exp-in-villa-header {
    text-align: center;
    margin-bottom: 60px;
}
.exp-in-villa-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #1C1714;
    margin-bottom: 16px;
}
.exp-in-villa-header p {
    font-size: 0.95rem;
    color: #6a5f55;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}
.exp-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}
.exp-card {
    background: #fff;
    padding: 40px 32px;
    border: 1px solid #ede8e0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}
.exp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.08);
}
.exp-card-icon {
    margin-bottom: 22px;
}
.exp-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1C1714;
    margin-bottom: 14px;
}
.exp-card p {
    font-size: 0.88rem;
    color: #4a3f35;
    line-height: 1.85;
    flex: 1;
    margin-bottom: 16px;
}
.exp-card-tag {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #C8A96E;
    border-top: 1px solid #ede8e0;
    padding-top: 14px;
    margin-top: auto;
}
@media (max-width: 768px) {
    .exp-in-villa { padding: 50px 5%; }
    .exp-in-villa-header { margin-bottom: 35px; }
    .exp-in-villa-header h2 { font-size: 1.6rem; }
    .exp-cards { grid-template-columns: 1fr; gap: 16px; }
    .exp-card { padding: 24px 20px; }
    .exp-card-icon { margin-bottom: 14px; }
    .exp-card-icon svg { width: 28px; height: 28px; }
    .exp-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
}
