/* ────────────────────────────────────────────────
   Landing index.html — salvia, pesca, oro + footer taupe
──────────────────────────────────────────────── */

:root {
    --cc-ink: #2a1a12;
    --cc-cream: #fdfaf7;
    --cc-parchment: #f3e8df;
    --cc-sage: #bec1ab;
    --cc-accent: #c5a479;
    --cc-accent-rgb: 197 164 121;
    --cc-accent-deep: #8f6845;
    --cc-muted: #45362d;
    --cc-muted-soft: #5c4d45;
    --cc-surface: #faf6f1;
    --cc-surface-elevated: #ffffff;
    --cc-gold: #c5a479;
    --cc-rose: #ddb8a5;
    --cc-footer-bg: #bcbfa9;
}

/* HERO */
.hero-video {
    background: radial-gradient(ellipse 120% 80% at 60% 40%, #f4ebe6 0%, #edd4c8 42%, #e4c9ba 100%);
    position: relative;
    overflow: hidden;
}

.hero-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 3px at 20% 25%, rgba(197,164,121,.52) 0%, transparent 100%),
        radial-gradient(circle 2px at 75% 15%, rgba(197,164,121,.42) 0%, transparent 100%),
        radial-gradient(circle 2.5px at 55% 70%, rgba(197,164,121,.38) 0%, transparent 100%),
        radial-gradient(circle 2px at 10% 60%, rgba(197,164,121,.33) 0%, transparent 100%),
        radial-gradient(circle 1.5px at 85% 80%, rgba(197,164,121,.48) 0%, transparent 100%),
        radial-gradient(circle 2px at 40% 10%, rgba(197,164,121,.38) 0%, transparent 100%),
        radial-gradient(circle 1px at 92% 45%, rgba(197,164,121,.28) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* Banner top */
.hero-banner {
    background: rgb(253 249 243 / 0.96);
    border-bottom: 1px solid rgb(var(--cc-accent-rgb) / 0.2);
    backdrop-filter: blur(12px);
}

.hero-banner .hero-banner-text {
    margin: 0;
    font-family: 'samsungsharpsans', sans-serif;
    font-weight: 600;
    font-size: clamp(0.775rem, 2vw, 0.895rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cc-accent-deep);
    text-shadow: none;
}

.cc-inline-sparkle {
    width: 0.9em;
    height: 0.9em;
    vertical-align: -0.12em;
    opacity: 0.9;
}

.cc-inline-sparkle--badge {
    width: 0.82em;
    height: 0.82em;
    margin-right: 0.34em;
    vertical-align: -0.08em;
    opacity: 0.95;
}

/* Sigillo hero */
.hero-seal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    padding: 0 20px;
    animation: heroFadeIn 1.2s ease both;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translate(-50%, -46%); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
}

.hero-wordmark {
    font-family: 'theseasons', Georgia, serif;
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: normal;
    letter-spacing: 0.12em;
    color: var(--cc-ink);
    line-height: 1;
    text-transform: uppercase;
}

.hero-tagline {
    font-family: 'samsungsharpsans', sans-serif;
    font-size: clamp(0.85rem, 2vw, 1rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cc-muted-soft);
    margin-top: clamp(12px, 2.2vw, 20px);
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.btn-primary-hero {
    background: linear-gradient(145deg, var(--cc-accent), var(--cc-accent-deep));
    color: var(--cc-cream);
    padding: 14px 36px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 28px rgb(var(--cc-accent-rgb) / 0.38);
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgb(var(--cc-accent-rgb) / 0.48);
}

.btn-outline-hero {
    background: transparent;
    color: var(--cc-ink);
    padding: 14px 36px;
    border-radius: 100px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid rgb(var(--cc-accent-rgb) / 0.5);
    transition: all 0.3s ease;
}

.btn-outline-hero:hover {
    background: rgb(var(--cc-accent-rgb) / 0.08);
    border-color: var(--cc-accent);
}

/* Botanical corners */
.botanical-corner {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.22;
    pointer-events: none;
    z-index: 3;
}
.botanical-corner--tl { top: 0; left: 0; transform: rotate(0deg); }
.botanical-corner--tr { top: 0; right: 0; transform: rotate(90deg); }
.botanical-corner--bl { bottom: 0; left: 0; transform: rotate(-90deg); }
.botanical-corner--br { bottom: 0; right: 0; transform: rotate(180deg); }

/* SEZIONE INTRO / ESCLUSIVO */
.exclusivo-section {
    padding: 90px 0;
    position: relative;
}

.exclusivo-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(var(--cc-accent-rgb)/.3), transparent);
}

.exclusivo-section .container {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
    gap: clamp(48px, 6vw, 88px);
    align-items: center;
    max-width: 1360px;
    padding-left: clamp(18px, 5vw, 52px);
    padding-right: clamp(18px, 5vw, 52px);
}

.content-right h2,
.detalhes-section h2,
.steps-section h2,
.faq-section h2,
.depoimentos-section h2 {
    font-family: 'theseasons', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: normal;
    color: var(--cc-ink);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    line-height: 1.25;
}

.content-right h2 em {
    color: var(--cc-accent);
    font-style: normal;
}

/* GALLERY MOCKUP — colonne laterali un po’ più larghe */
.gallery-mockup-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1.1fr;
    gap: clamp(12px, 2.2vw, 20px);
    align-items: end;
    width: 100%;
}

.mockup-frame {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(42,13,10,.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 2px solid rgb(var(--cc-accent-rgb)/.15);
    aspect-ratio: 9 / 19.5;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

.mockup-frame:nth-child(2) {
    transform: translateY(-24px);
}

.mockup-frame:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 60px rgba(42,13,10,.24);
}

.mockup-frame:nth-child(2):hover {
    transform: translateY(-30px) scale(1.02);
}

.mockup-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* FEATURES ICONS */

.feature-item {
    background: var(--cc-surface-elevated);
    border: 1px solid rgb(var(--cc-accent-rgb)/.14);
    border-radius: 18px;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgb(var(--cc-accent-rgb)/.4);
    box-shadow: 0 6px 24px rgb(var(--cc-accent-rgb)/.15);
}

.feature-text strong {
    display: block;
    color: var(--cc-ink);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.feature-text span {
    font-size: 0.82rem;
    color: var(--cc-muted-soft);
}

/* Cosa può includere — una colonna (override grid 1fr 1fr da styles.css) */
.detalhes-section .container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

#funzionalita .features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

#funzionalita .features-list .feature-item {
    min-width: 0;
}

#funzionalita .features-list .feature-text {
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    #funzionalita .features-list {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 2px 8px;
        gap: 14px;
    }

    .detalhes-section .container > div:first-child {
        margin-bottom: 40px !important;
    }
}

/* PLANOS — scelta tipo evento */
.event-type-q {
    font-family: 'samsungsharpsans', system-ui, sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--cc-ink);
    margin: 0 auto 16px;
    max-width: 640px;
    line-height: 1.45;
}

.event-type-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 760px;
    margin: 0 auto 36px;
    padding: 0 8px;
}

.event-chip {
    font-family: 'samsungsharpsans', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 11px 18px;
    border-radius: 100px;
    border: 1.5px solid rgb(var(--cc-accent-rgb) / 0.35);
    background: var(--cc-surface-elevated);
    color: var(--cc-ink);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.event-chip:hover {
    border-color: rgb(var(--cc-accent-rgb) / 0.55);
    box-shadow: 0 4px 14px rgb(var(--cc-accent-rgb) / 0.12);
}

.event-chip:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgb(var(--cc-accent-rgb) / 0.35);
}

.event-chip--active {
    background: var(--cc-accent);
    border-color: var(--cc-accent);
    color: var(--cc-cream);
    box-shadow: 0 6px 20px rgb(var(--cc-accent-rgb) / 0.28);
}

.event-chip--active:hover {
    filter: brightness(1.05);
    border-color: var(--cc-accent);
}

/* Griglia tre tipologie (override flex carousel da styles.css) */
#planos .planos-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 12px 8px;
    overflow: visible;
    scroll-snap-type: none;
}

#planos .planos-track .plano-card {
    max-width: none;
    width: 100%;
    flex: initial;
    scroll-snap-align: unset;
}

/* Tipologie: carosello orizzontale su mobile / tablet */
@media (max-width: 900px) {
    #planos > .container {
        max-width: 100%;
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    #planos .planos-track {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 16px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 16px;
        scroll-padding-top: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgb(var(--cc-accent-rgb) / 0.5) rgb(var(--cc-accent-rgb) / 0.08);
        /* Spazio per i badge position:absolute; top:-14px (overflow-x crea spesso clipping verticale) */
        padding: 36px 4px 24px;
        max-width: none;
        margin: 0 -4px;
    }

    #planos .planos-track::-webkit-scrollbar {
        height: 6px;
    }

    #planos .planos-track::-webkit-scrollbar-thumb {
        background: rgb(var(--cc-accent-rgb) / 0.45);
        border-radius: 3px;
    }

    #planos .planos-track .plano-card {
        flex: 0 0 min(88vw, 300px);
        width: min(88vw, 300px);
        max-width: min(88vw, 300px);
        min-width: 0;
        scroll-snap-align: start;
    }

    .planos-section .convitepremium {
        font-size: clamp(1.85rem, 9vw, 2.75rem) !important;
    }
}

/* .plano-card { display: flex } in styles.css può vincere su [hidden]: le card restano visibili */
#planos #planos-card-video[hidden],
#planos #planos-card-stampa[hidden] {
    display: none !important;
}

.plano-card--video:hover {
    border-color: rgb(221 184 165 / 0.85);
    box-shadow: 0 10px 32px rgb(197 164 121 / 0.12);
}

.plano-card--stampa:hover {
    border-color: rgb(190 193 171 / 0.9);
    box-shadow: 0 10px 32px rgb(190 193 171 / 0.2);
}

/* PLANOS CAROUSEL */
.planos-section {
    padding: 90px 0;
}

.planos-section h2 {
    font-family: 'theseasons', Georgia, serif;
    font-weight: normal;
}

.plano-card {
    background: var(--cc-surface-elevated);
    border: 1px solid rgb(var(--cc-accent-rgb)/.18);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.plano-card:hover {
    border-color: var(--cc-accent);
    box-shadow: 0 12px 40px rgb(var(--cc-accent-rgb)/.2);
}

.plano-card-title {
    font-family: 'theseasons', Georgia, serif;
    font-size: 1.4rem;
    font-weight: normal;
    color: var(--cc-ink);
    margin-bottom: 8px;
}

/* Trattino fuori da theseasons: altrimenti il font può mostrare un glifo ornamentale al posto del "-" */
.plano-card-title-hyphen {
    font-family: 'samsungsharpsans', system-ui, sans-serif;
    font-weight: 500;
    font-size: 0.68em;
    vertical-align: 0.06em;
    letter-spacing: 0;
}

/* SIGILLO / SEAL DECORATIVO */
.seal-divider {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    margin: 20px 0;
}

.seal-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(var(--cc-accent-rgb)/.3), transparent);
    max-width: 200px;
}

.seal-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--cc-parchment), #f5e8d8);
    border: 1.5px solid rgb(var(--cc-accent-rgb)/.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.seal-icon > img {
    width: 56%;
    height: 56%;
    object-fit: contain;
    display: block;
}

/* REVIEWS */

.recensione-card.plano-card {
    background: linear-gradient(145deg, #fff, var(--cc-cream));
}

/* STEPS */
.steps-section {
    padding: 90px 0;
    background: linear-gradient(180deg, transparent, rgb(var(--cc-accent-rgb)/.05), transparent);
}

.step {
    background: var(--cc-surface-elevated);
    border: 1px solid rgb(var(--cc-accent-rgb)/.15);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgb(var(--cc-accent-rgb)/.15);
}

.step-number-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--cc-parchment), #f0ddd0);
    border: 2px solid rgb(var(--cc-accent-rgb)/.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: 'theseasons', Georgia, serif;
    font-size: 1.4rem;
    color: var(--cc-accent);
}

/* FOOTER — allineato a styles.css (--cc-footer-bg), non sovrascrivere con accent */
.pre-footer-social {
    background: var(--cc-footer-bg);
    position: relative;
    padding-top: 42px;
    padding-bottom: 18px;
}

.pre-footer-social::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -54px;
    height: 54px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgb(188 191 169 / 0) 0%,
        rgb(188 191 169 / 0.45) 58%,
        rgb(188 191 169 / 0.95) 100%
    );
}

footer {
    background: var(--cc-footer-bg);
    padding-top: 12px;
    padding-bottom: 42px;
}

/* SCROLL INDICATOR */
.scroll-arrow-wrap {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.7;
}

.scroll-chevron {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--cc-accent);
    border-bottom: 2px solid var(--cc-accent);
    transform: rotate(45deg);
    animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%,100% { transform: rotate(45deg) translateY(0); }
    50%      { transform: rotate(45deg) translateY(6px); }
}

/* STELLE DECORATIVE */
.star-sparkle {
    display: inline-block;
    width: 14px;
    height: 14px;
    position: relative;
}

.star-sparkle::before,
.star-sparkle::after {
    content: '';
    position: absolute;
    background: var(--cc-gold);
    border-radius: 2px;
}

.star-sparkle::before {
    width: 2px; height: 14px;
    top: 0; left: 6px;
}

.star-sparkle::after {
    width: 14px; height: 2px;
    top: 6px; left: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .exclusivo-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-mockup-grid {
        grid-template-columns: 1.08fr 0.84fr 1.08fr;
        gap: clamp(8px, 2.5vw, 14px);
        max-width: min(100%, 400px);
        margin: 0 auto;
    }

    .botanical-corner {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .gallery-mockup-grid {
        max-width: min(100%, 360px);
        margin: 0 auto;
    }
}

/* Feature: Animazione EXTRA + banner */
.extra-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cc-cream);
    background: linear-gradient(145deg, var(--cc-accent), var(--cc-accent-deep));
    padding: 4px 10px;
    border-radius: 6px;
    line-height: 1;
}

.feature-extra-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgb(var(--cc-accent-rgb) / 0.18);
    border-radius: 18px;
    overflow: hidden;
    background: var(--cc-surface-elevated);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-extra-wrap:hover {
    border-color: rgb(var(--cc-accent-rgb) / 0.4);
    box-shadow: 0 6px 24px rgb(var(--cc-accent-rgb) / 0.12);
}

.feature-extra-wrap .feature-item {
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.feature-extra-wrap .feature-item:hover {
    border: none;
    box-shadow: none;
}

.feature-extra-banner {
    padding: 12px 16px 14px;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--cc-muted);
    background: linear-gradient(180deg, rgb(var(--cc-accent-rgb) / 0.12), rgb(var(--cc-accent-rgb) / 0.03));
    border-top: 1px dashed rgb(var(--cc-accent-rgb) / 0.25);
    text-align: left;
}

.feature-extra-banner strong {
    color: var(--cc-ink);
    font-weight: 600;
}

.feature-extra-banner__lead {
    display: block;
    line-height: 1.55;
}

/* Testo lungo solo dopo click sulla “i” */
.cc-info-details {
    display: inline-block;
    vertical-align: text-bottom;
    max-width: 100%;
    margin-left: 0.28em;
}

.cc-info-details__summary {
    display: inline-flex;
    align-items: center;
    list-style: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
}

.cc-info-details__summary::-webkit-details-marker {
    display: none;
}

.cc-info-details__body {
    margin: 12px 0 0;
    padding-top: 12px;
    border-top: 1px dashed rgb(var(--cc-accent-rgb) / 0.28);
    font-size: inherit;
    line-height: inherit;
    color: var(--cc-muted);
}

.cc-info-details__body strong {
    color: var(--cc-ink);
    font-weight: 600;
}

.feature-extra-banner .cc-info-tip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.05rem;
    height: 1.05rem;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    font-size: 0.58rem;
    font-weight: 700;
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1;
    color: var(--cc-cream);
    background: var(--cc-accent);
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    top: -0.04em;
    -webkit-tap-highlight-color: transparent;
}

.cc-info-details__summary:hover .cc-info-tip,
.cc-info-details__summary:focus-visible .cc-info-tip {
    filter: brightness(1.08);
    box-shadow: 0 0 0 2px rgb(var(--cc-accent-rgb) / 0.35);
}

.cc-info-details__summary:focus-visible {
    outline: none;
}

.cc-info-details__summary:focus-visible .cc-info-tip {
    outline: none;
}

/* FAQ */
.faq-section {
    padding: 90px 0;
    background: linear-gradient(180deg, transparent, rgb(var(--cc-accent-rgb) / 0.04), transparent);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--cc-surface-elevated);
    border: 1px solid rgb(var(--cc-accent-rgb) / 0.14);
    border-radius: 18px;
    padding: 0;
    text-align: left;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover,
.faq-item:focus-within {
    border-color: rgb(var(--cc-accent-rgb) / 0.35);
    box-shadow: 0 8px 28px rgb(var(--cc-accent-rgb) / 0.1);
}

.faq-summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
    -webkit-user-select: none;
    user-select: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary__icon {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-top: 0.35em;
    border-right: 2px solid var(--cc-accent);
    border-bottom: 2px solid var(--cc-accent);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-summary__icon {
    transform: rotate(-135deg);
    margin-top: 0.55em;
}

.faq-q {
    font-family: 'theseasons', Georgia, serif;
    font-size: 1.05rem;
    font-weight: normal;
    color: var(--cc-ink);
    letter-spacing: 0.03em;
    margin: 0;
    line-height: 1.35;
}

.faq-a {
    margin: 0;
    padding: 0 22px 20px;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--cc-muted-soft);
}

.faq-item[open] .faq-a {
    padding-top: 16px;
    border-top: 1px dashed rgb(var(--cc-accent-rgb) / 0.2);
}

.faq-a strong {
    color: var(--cc-muted);
    font-weight: 600;
}

.faq-a-list {
    margin: 0;
    padding: 0 22px 20px 2.5rem;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--cc-muted-soft);
}

.faq-a + .faq-a-list {
    margin-top: -6px;
}

.faq-a-list li {
    margin-bottom: 12px;
    padding-left: 0.15em;
}

.faq-a-list li:last-child {
    margin-bottom: 0;
}

.faq-a-list strong {
    color: var(--cc-muted);
    font-weight: 600;
}

.faq-a-list em {
    color: var(--cc-muted);
    font-style: normal;
    font-size: 0.88em;
}

/* Musica: toggle nell’hero (invito), sotto CTA — non fixed sopra video intro */
.site-music-dock {
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.hero-music-dock {
    position: relative;
    z-index: 1;
    margin-top: 4px;
    align-self: center;
}

/* Video intro full screen (dopo tap busta) */
.cc-intro-layer {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: #1a1210;
    -webkit-tap-highlight-color: transparent;
}

.cc-intro-layer.is-visible {
    display: flex;
}

.cc-intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
}

/* Transizione oro tra video e sito */
.cc-gold-transition {
    position: fixed;
    inset: 0;
    z-index: 10001;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(
        145deg,
        #c5a479 0%,
        #ecd9a8 38%,
        #e8c89a 55%,
        #8f6845 100%
    );
}

.cc-gold-transition.is-animating {
    animation: ccGoldIntro 1.35s ease-in-out forwards;
}

@keyframes ccGoldIntro {
    0% {
        opacity: 0;
        filter: brightness(1.1);
    }
    28% {
        opacity: 1;
    }
    52% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        filter: brightness(1);
    }
}

.site-music-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgb(var(--cc-accent-rgb) / 0.42);
    background: rgb(253 249 243 / 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 18px rgb(42 26 18 / 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.site-music-btn:hover {
    border-color: var(--cc-accent);
    box-shadow: 0 6px 22px rgb(var(--cc-accent-rgb) / 0.22);
}

.site-music-btn:active {
    transform: scale(0.96);
}

.site-music-btn:focus-visible {
    outline: 2px solid var(--cc-accent);
    outline-offset: 2px;
}

.site-music-btn img {
    display: block;
    pointer-events: none;
}

/* ── SPLASH SCREEN ── */
#splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--cc-parchment);
    overflow-y: auto;
    overflow-x: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
#splash.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/* I figli resterebbero cliccabili con pointer-events: auto (default); su mobile rubano lo scroll durante il fade */
#splash.hide * {
    pointer-events: none !important;
}
#splash-inner {
    position: relative;
    width: 100%;
}
#splash img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── RECENSIONI: palette sito + modulo ── */
.recensioni-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

#recensioni .recensioni-feedback-msg {
    max-width: 560px;
    margin: 0 auto 24px;
    padding: 16px 20px;
    border-radius: 14px;
    font-size: 0.95rem;
    line-height: 1.55;
    text-align: center;
    box-sizing: border-box;
}

#recensioni .recensioni-feedback-msg.recensioni-grazie {
    background: linear-gradient(145deg, rgb(var(--cc-accent-rgb) / 0.14), rgb(190 193 171 / 0.18));
    border: 1px solid rgb(var(--cc-accent-rgb) / 0.32);
    color: var(--cc-ink);
}

#recensioni .recensioni-feedback-msg.recensioni-errore-msg {
    background: linear-gradient(145deg, rgb(221 184 165 / 0.35), rgb(var(--cc-accent-rgb) / 0.12));
    border: 1px solid rgb(197 164 121 / 0.45);
    color: var(--cc-ink);
}

#recensioni .recensioni-cta {
    background: linear-gradient(160deg, rgb(var(--cc-accent-rgb) / 0.1), rgb(190 193 171 / 0.14));
    border: 1px solid rgb(var(--cc-accent-rgb) / 0.22);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgb(42 26 18 / 0.05);
}

#recensioni .recensioni-cta-label {
    color: var(--cc-accent-deep);
    letter-spacing: 0.14em;
}

#recensioni .recensioni-cta-hint {
    color: var(--cc-muted-soft);
}

#recensioni .recensioni-form-wrap {
    border-color: rgb(var(--cc-accent-rgb) / 0.22);
    background: linear-gradient(180deg, var(--cc-surface-elevated) 0%, rgb(253 250 247 / 0.98) 100%);
    box-shadow: 0 14px 44px rgb(var(--cc-accent-rgb) / 0.08);
    margin-bottom: 40px;
}

#recensioni .recensioni-form-title {
    color: var(--cc-ink);
    font-family: 'theseasons', Georgia, serif;
    font-weight: normal;
    letter-spacing: 0.04em;
}

#recensioni .recensioni-opzionale {
    color: var(--cc-sage);
}

#recensioni .recensioni-form-hint {
    color: var(--cc-muted-soft);
}

#recensioni .recensioni-placeholder {
    color: var(--cc-muted-soft);
}

#recensioni .recensione-card-insta-icon {
    filter: none;
    opacity: 1;
}

#recensioni .recensione-card-avatar .avatar-initials {
    color: var(--cc-ink);
}

#recensioni .recensione-card-avatar .avatar-initials--anonimo {
    color: var(--cc-accent-deep);
}
