/* ═══════════════════════════════════════════════════════════════════════════
   BTAN 2.0 — DESIGN SYSTEM v3
   Architecture: ITCSS | Naming: BEM | Scope: FSE (CMS Oriented)
   Base: v2 fondazione identica. Rimossi: PAGE-SPECIFIC.
   Aggiunti: hero--split, hero--cover, promo-banner, check-list.
   ═══════════════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════
   L1 — SETTINGS (Design Tokens)
   ═══════════════════════════════════════════════════ */

:root {
    --nude: #f7ebe0;
    --brown: #724437;
    --brown-dark: #5a3529;
    --brown-light: #8b5e52;
    --cream: #fdf8f4;
    --cream-dark: #f0e4d8;
    --text: #2d1a12;
    --text-light: #6b4f43;
    --white: #ffffff;
    --gold: #c9a96e;

    --font-display: 'Young Serif', serif;
    --font-body: 'Poppins', sans-serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --radius-pill: 100px;
    --radius-card: 16px;
    --radius-media: 12px;

    --shadow-card-hover: 0 12px 40px rgba(114, 68, 55, 0.08);
    --shadow-btn-hover: 0 8px 30px rgba(114, 68, 55, 0.25);
    --shadow-dropdown: 0 8px 30px rgba(114, 68, 55, 0.12);

    --nav-height: 72px;
}


/* ═══════════════════════════════════════════════════
   L2 — GENERIC (Reset)
   ═══════════════════════════════════════════════════ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}


/* ═══════════════════════════════════════════════════
   L4 — OBJECTS (layout patterns)
   ═══════════════════════════════════════════════════ */

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brown-light);
    margin-bottom: 1rem;
    text-align: center;
}



.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--brown);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}



/* Paragrafo introduttivo compatto sotto il titolo.
   Valori esatti da .education-intro (V2 L1878). */
.section-intro {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
}

.container-std {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.section-padding {
    padding: 6rem 2rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid--gap-lg {
    gap: 2rem;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid--asym {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.tag-line {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tag-line::before {
    content: '';
    width: 32px;
    height: 1.5px;
}

.tag-line--light {
    color: var(--brown-light);
}

.tag-line--light::before {
    background: var(--brown-light);
}

.tag-line--dark {
    color: var(--nude);
}

.tag-line--dark::before {
    background: var(--nude);
}





/* ═══════════════════════════════════════════════════
   L5 — COMPONENTS
   ═══════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: var(--brown);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hover);
}

.btn--secondary {
    background: transparent;
    color: var(--brown);
    border: 1.5px solid var(--brown);
    font-weight: 500;
}

.btn--secondary:hover {
    background: var(--brown);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--light {
    background: var(--nude);
    color: var(--brown);
}

.btn--light:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn--sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
}

.card {
    background: var(--white);
    border-radius: var(--radius-card);
    border: 1px solid rgba(114, 68, 55, 0.06);
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.card--benefit {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.card--benefit .icon-circle {
    margin: 0 auto 1.25rem;
}

.card--review {
    padding: 2rem;
}

.card--seg {
    text-align: center;
    padding: 2.5rem 2rem;
}

.card--seg .icon-circle {
    margin: 0 auto 1.5rem;
}

a.card--seg {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.card--problem {
    padding: 2.5rem;
    background: var(--cream-dark);
    border: 1px solid rgba(114, 68, 55, 0.1);
    opacity: 0.95;
}

.card--solution {
    padding: 2.5rem;
    background: var(--white);
}

/* ═══════════════════════════════════════════════════
   L5 — COMPONENTS: Comparison List (FSE Native)
   Lista nativa <ul> o <ol> per contesti Problema/Soluzione
   ═══════════════════════════════════════════════════ */
.comparison-list {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comparison-list li {
    position: relative;
    padding-left: 3rem;
    font-size: 0.95rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    min-height: 2rem;
}

/* Modificatore Problemi (Icona X) */
.card--problem .comparison-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--nude);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='rgba(114,68,55,1)' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-size: 1rem;
    background-position: center;
    background-repeat: no-repeat;
}

.card--problem .comparison-list li {
    font-weight: 300;
    font-style: italic;
    color: var(--text-light);
}

/* Modificatore Soluzioni (Icona ✓) */
.card--solution .comparison-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--nude);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='rgba(114,68,55,1)' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 1rem;
    background-position: center;
    background-repeat: no-repeat;
}

.card--solution .comparison-list li {
    font-weight: 400;
    color: var(--text);
}

.card--lead {
    padding: 2.5rem 2rem;
}

.card--lead .icon-circle {
    margin-bottom: 1.5rem;
}

.card--lead .icon-circle svg {
    width: 28px;
    height: 28px;
}

.benefit-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--brown);
}

.benefit-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
}

.review-stars {
    color: var(--brown);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 36px;
    height: 36px;
    background: var(--nude);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brown);
}

.review-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
}

.review-date {
    font-size: 0.7rem;
    color: var(--text-light);
}

.review-google {
    font-size: 0.65rem;
    color: var(--text-light);
    opacity: 0.7;
}

.seg-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--brown);
    margin-bottom: 0.75rem;
}

.seg-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.card--lead h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 0.75rem;
}

.card--lead p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.form-text-side {
    padding-top: 1rem;
}

.form-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brown-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--brown-light);
}

.form-headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Card contenitore del form */
.card--form {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 12px 48px rgba(114, 68, 55, 0.08);
}

/* Pulsante di submit del form */
.form-submit {
    display: block;
    margin: 0.5rem auto 0;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.form-group label .required {
    color: var(--brown-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid rgba(114, 68, 55, 0.12);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    background: var(--cream);
    color: var(--text);
    outline: none;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brown);
    background: var(--white);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23724437' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-privacy {
    margin: 1.25rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--brown);
    cursor: pointer;
    flex-shrink: 0;
}

.form-privacy label {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.5;
    cursor: pointer;
}

.form-privacy a {
    color: var(--brown);
    text-decoration: underline;
}

.card--notice {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 12px;
    border-left: 3px solid var(--brown-light);
}

.card--notice strong {
    color: var(--brown);
}

.icon-circle {
    border-radius: 50%;
    background: var(--nude);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle svg {
    stroke: var(--brown);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-circle--sm {
    width: 48px;
    height: 48px;
}

.icon-circle--sm svg {
    width: 26px;
    height: 26px;
}

.icon-circle--md {
    width: 64px;
    height: 64px;
}

.icon-circle--md svg {
    width: 30px;
    height: 30px;
}

.icon-circle--lg {
    width: 72px;
    height: 72px;
}

.icon-circle--lg svg {
    width: 36px;
    height: 36px;
}

.icon-circle svg,
.icon-circle i {
    color: var(--brown);
}

.card--method {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    text-align: left;
}

.card__method-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.card__method-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card--method::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 26, 18, 0.75) 0%, rgba(45, 26, 18, 0.15) 50%, transparent 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

.card__method-title,
.card__method-text,
.card__method-hint {
    position: relative;
    z-index: 3;
}

.card__method-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    padding: 0 1.5rem;
    transition: color var(--transition);
}

.card__method-hint {
    display: block;
    padding: 0.75rem 1.5rem 1.5rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}


/* ═══════════════════════════════════════════════════
   BLOCCO: Step By Step
   Griglia di passaggi numerati (1, 2, 3).
   Sostituisce .timeline-grid rimuovendo la linea 
   orizzontale non-FSE-compliant.
   ═══════════════════════════════════════════════════ */

.step-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--brown);
}

.step-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
}

.card__method-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    padding: 0 1.5rem 1.5rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card--method:hover::after {
    background: linear-gradient(to top, rgba(45, 26, 18, 0.95) 0%, rgba(45, 26, 18, 0.7) 60%, rgba(45, 26, 18, 0.3) 100%);
}

.card--method:hover .card__method-text {
    opacity: 1;
    max-height: 300px;
    padding-top: 0.5rem;
}

.card--method:hover .card__method-hint {
    opacity: 0;
}

.trust-numbers {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2.5rem;
    color: var(--brown);
    line-height: 1;
}

.trust-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}



.bg-cream {
    background-color: var(--cream);
}

.bg-nude {
    background-color: var(--nude);
}

.bg-white {
    background-color: var(--white);
}

.faq-item {
    border-bottom: 1px solid rgba(114, 68, 55, 0.1);
}

.faq-item summary {
    padding: 1.5rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--brown);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition);
}

.faq-item summary:hover {
    color: var(--brown-dark);
}

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--brown-light);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item .faq-answer {
    padding: 0 0 1.5rem;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item .faq-answer ul {
    list-style-position: inside;
    padding-left: 0;
    margin: 0;
}

.video-placeholder {
    position: relative;
    border-radius: var(--radius-media);
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--nude) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    aspect-ratio: 4/3;
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(114, 68, 55, 0.12);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(45, 26, 18, 0.15);
    z-index: 1;
}

.video-play-btn {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all var(--transition);
}

.video-placeholder:hover .video-play-btn {
    transform: scale(1.1);
}

.video-play-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--brown);
    margin-left: 3px;
}

.video-label {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    color: var(--brown);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.gallery-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--brown-light) transparent;
}

.gallery-slider::-webkit-scrollbar {
    height: 6px;
}

.gallery-slider::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-slider::-webkit-scrollbar-thumb {
    background-color: var(--brown-light);
    border-radius: 10px;
}

.gallery-slide {
    flex: 0 0 300px;
    height: 220px;
    border-radius: var(--radius-media);
    scroll-snap-align: start;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-card {
    border-radius: var(--radius-media);
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
}

.ba-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    bottom: 14px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(114, 68, 55, 0.6);
    backdrop-filter: blur(4px);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    z-index: 3;
}

.ba-label.label-prima {
    left: 14px;
}

.ba-label.label-dopo {
    right: 14px;
}

.press-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius-card);
    margin-top: 2rem;
}

.press-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.press-logo-svg {
    color: var(--brown);
    opacity: 0.7;
    transition: opacity var(--transition);
}

.press-logo-svg:hover {
    opacity: 1;
}

.lead-form {
    display: flex;
    gap: 0.75rem;
}

.lead-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(114, 68, 55, 0.15);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.85rem;
    background: var(--cream);
    color: var(--text);
    outline: none;
    transition: border-color var(--transition);
}

.lead-form input:focus {
    border-color: var(--brown);
}


/* ═══════════════════════════════════════════════════
   BLOCCO: Navigation
   Identica in homepage e wedding — riuso completo.
   ═══════════════════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 244, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(114, 68, 55, 0.08);
    transition: var(--transition);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-hamburger {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--brown);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--brown);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .nav-link--accent {
    color: var(--brown);
    font-weight: 600;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-dropdown-arrow {
    font-size: 0.6rem;
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -16px;
    background: var(--white);
    border-radius: var(--radius-media);
    padding: 0.5rem 0;
    min-width: 180px;
    box-shadow: var(--shadow-dropdown);
    border: 1px solid rgba(114, 68, 55, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 10;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.78rem !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    background: var(--nude);
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 0.25rem;
}

.nav-social a {
    color: var(--text-light) !important;
    opacity: 0.5;
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
}

.nav-social a:hover {
    opacity: 1;
}

.nav-social a::after {
    display: none !important;
}

.nav-social svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-lang {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lang-option {
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    color: var(--text-light) !important;
    text-decoration: none;
    padding: 4px 6px;
    border-radius: 4px;
    transition: all var(--transition);
}

.lang-option:hover {
    color: var(--brown) !important;
}

.lang-option::after {
    display: none !important;
}

.lang-active {
    color: var(--brown) !important;
    font-weight: 600 !important;
    background: var(--nude);
}

.lang-sep {
    font-size: 0.65rem;
    color: rgba(114, 68, 55, 0.25);
    user-select: none;
}

.nav-cta {
    background: var(--brown);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    transition: all var(--transition) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--brown-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(114, 68, 55, 0.3);
}


/* ═══════════════════════════════════════════════════
   BLOCCO: Hero
   .hero      = base (entrambe le pagine)
   .hero--split = variante testo sx + immagine dx (homepage)
   .hero--cover = variante full-bleed (wedding, self-tanning) — aggiunto dopo
   ═══════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--nude);
    padding-top: 72px;
}

/* Variante split: layout 2 colonne (testo sx, immagine dx) */
.hero--split .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brown-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-label::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: var(--brown-light);
}

.hero-headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--brown);
    margin-bottom: 1.5rem;
}

.hero-subhead {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-light);
    max-width: 440px;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.hero-desc {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    max-width: 440px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

.hero-trust-stars {
    color: var(--brown);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-right: 0.25rem;
}

.hero-trust-sep {
    width: 1px;
    height: 14px;
    background: rgba(114, 68, 55, 0.2);
}

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Variante cover: full-bleed image di sfondo, overlay scuro, testo centrato bianco.
   Usato per landing (wedding, servizi, self-tanning).
   In WP FSE: il bg è un Cover block nativo; il contenuto sono blocchi standard.
   ZERO override di misure — usa i valori base di hero-*. */
.hero--cover {
    justify-content: center;
    background: transparent;
}

/* Layer background: immagine assoluta + overlay gradient.
   In WP FSE corrisponde al Cover block nativo. */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(45, 26, 18, 0.3) 0%,
            rgba(45, 26, 18, 0.55) 40%,
            rgba(45, 26, 18, 0.75) 100%);
}

/* Contenuto centrato con max-width */
.hero--cover .hero-content {
    text-align: center;
    max-width: 720px;
    padding: 4rem 2rem;
}

/* Contesto colore scuro: testo bianco */
.hero--cover .hero-label {
    color: var(--white);
    opacity: 0.9;
    justify-content: center;
}

.hero--cover .hero-label::before {
    background: currentColor;
    opacity: 0.6;
}

/* Seconda linea decorativa (la base ha solo ::before) */
.hero--cover .hero-label::after {
    content: '';
    width: 32px;
    height: 1.5px;
    background: currentColor;
    opacity: 0.6;
}

.hero--cover .hero-headline {
    color: var(--white);
}

.hero--cover .hero-subhead {
    color: rgba(247, 235, 224, 0.9);
    margin-left: auto;
    margin-right: auto;
}

.hero--cover .hero-ctas {
    justify-content: center;
    flex-wrap: wrap;
}

.hero--cover .hero-trust {
    justify-content: center;
    color: rgba(247, 235, 224, 0.7);
    flex-wrap: wrap;
}

.hero--cover .hero-trust-sep {
    background: rgba(247, 235, 224, 0.25);
}

/* Adattamento Cromatico e Layout della checklist per contesti scuri (hero--cover) */
.hero--cover .check-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* per mobile */
    gap: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero--cover .check-list {
        flex-wrap: nowrap;
        white-space: nowrap;
    }
}

.hero--cover .check-list__item {
    color: rgba(247, 235, 224, 0.9);
}

/* ═══════════════════════════════════════════════════
   BLOCCO: Promo Banner
   Banner orizzontale promozionale generico.
   Sostituisce .wedding-banner (pagina-specifico).
   Riusabile su qualsiasi pagina.
   ═══════════════════════════════════════════════════ */

.promo-banner {
    background: var(--brown);
    padding: 1rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.03) 100%);
}

.promo-banner a {
    color: var(--nude);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition);
    position: relative;
    z-index: 1;
}

.promo-banner a strong {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.promo-banner a:hover {
    color: var(--white);
}

.promo-banner .arrow {
    transition: transform var(--transition);
    font-size: 1.2rem;
}

.promo-banner a:hover .arrow {
    transform: translateX(4px);
}


/* ═══════════════════════════════════════════════════
   BLOCCO: Section Statement
   Sezione full-bleed con immagine di sfondo, overlay
   scuro e testo bianco centrato. Generico e riusabile.
   Sostituisce .emotional (nome pagina-specifico).
   Background image va impostata inline o via CMS.
   ═══════════════════════════════════════════════════ */

.section-statement {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.section-statement__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-statement__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-statement::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(45, 26, 18, 0.82) 0%, rgba(45, 26, 18, 0.65) 40%, rgba(45, 26, 18, 0.45) 100%);
    z-index: 1;
}

.section-statement__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-statement__inner::before,
.section-statement__inner::after {
    content: '';
    display: block;
    width: 40px;
    height: 1.5px;
    background: var(--nude);
    opacity: 0.3;
    margin: 0 auto;
}

.section-statement__inner::before {
    margin-bottom: 2.5rem;
}

.section-statement__inner::after {
    margin-top: 2.5rem;
}

.section-statement h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.section-statement p {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(247, 235, 224, 0.9);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.section-statement .accent {
    font-weight: 500;
    color: var(--nude);
    font-style: italic;
}


/* ═══════════════════════════════════════════════════
   UTILITY CLASSES
   Dalla V2 L2694-L2713. Identiche.
   ═══════════════════════════════════════════════════ */

.text-center {
    text-align: center !important;
}

.mt-lg {
    margin-top: 3rem !important;
}

/* Grid: colonna sx più larga (media/video) + colonna dx contenuto.
   Usato nel blocco education e analoghi. */
.grid--content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}


/* ═══════════════════════════════════════════════════
   BLOCCO: Check List
   Lista di check orizzontale generico.
   Sostituisce .method-checks / .method-check.
   Valori esatti da V2 L1913-L1941.
   ═══════════════════════════════════════════════════ */

.check-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.check-list__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brown);
}

.check-list__item .check-icon {
    width: 24px;
    height: 24px;
    background: var(--nude);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--brown);
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════
   BLOCCO: Section Tagline
   Frase centrale in display font, centrata.
   Sostituisce .method-intro (nome pagina-specifico).
   Valori esatti da V2 L1943-L1951.
   ═══════════════════════════════════════════════════ */

.section-tagline {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--brown);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}


/* ═══════════════════════════════════════════════════
   UTILITY — Margin e Gap aggiuntivi
   ═══════════════════════════════════════════════════ */

.mb-lg {
    margin-bottom: 3rem !important;
}

.mb-xl {
    margin-bottom: 4rem !important;
}

.mt-xl {
    margin-top: 4rem !important;
}

.mb-md {
    margin-bottom: 2rem !important;
}

.mb-sm {
    margin-bottom: 1.5rem !important;
}

/* Gap 2.5rem per grid con contenuto mixed (card + video) */
.grid--gap-xl {
    gap: 2.5rem !important;
}


/* ═══════════════════════════════════════════════════
   BLOCCO: Section Promo
   Sezione promozionale full-bleed: img reale di sfondo,
   overlay scuro, testo a sinistra in layout 2 colonne.
   Sostituisce .self-tanning (nome pagina-specifico).
   Valori esatti da V2 L2057-2134.
   ═══════════════════════════════════════════════════ */

.section-promo {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.section-promo__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-promo__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-promo__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(45, 26, 18, 0.88) 0%, rgba(45, 26, 18, 0.72) 40%, rgba(45, 26, 18, 0.45) 100%);
}

.section-promo__content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-promo h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-promo__desc {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(247, 235, 224, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}


/* ═══════════════════════════════════════════════════
   BLOCCO: FAQ — utility e classi mancanti
   ═══════════════════════════════════════════════════ */

/* Container stretto (FAQ, form, lead) — 800px */
.container-sm {
    max-width: 800px;
    margin: 0 auto;
}

/* Margin-top utility aggiuntive */
.mt-sm {
    margin-top: 1rem !important;
}

.mt-md {
    margin-top: 2rem !important;
}

/* Link testuale con underline — componente FAQ.
   Valori esatti da V2 L2177-2188. */
.faq-link {
    font-size: 0.85rem;
    color: var(--brown);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(114, 68, 55, 0.3);
    transition: border-color var(--transition);
}

.faq-link:hover {
    border-color: var(--brown);
}


/* ═══════════════════════════════════════════════════
   BLOCCO: Lead Capture
   Sezione conversione: titolo centrato, griglia 2 col.
   Sostituisce .lead / .lead-inner / .lead-desc.
   Valori esatti da V2 L2194-2226.
   ═══════════════════════════════════════════════════ */



/* Text alignment utility */
.text-left {
    text-align: left !important;
}


/* ═══════════════════════════════════════════════════
   BLOCCO: Academy / Feature Section
   Sezione con card orizzontale bianca interna.
   Sostituisce .academy e le sue classi specifiche.
   Valori esatti da V2 L2234-2319.
   ═══════════════════════════════════════════════════ */

/* Padding compatto (5rem) — per sezioni con componenti
   interni già spaziosi. Modificatore di section-padding.
   Usabile in WP FSE come stile "compact" del blocco Group. */
.section-padding--compact {
    padding: 5rem 2rem;
}

/* Card orizzontale con griglia interna asimmetrica.
   Bianca, con bordi arrotondati e bordo sottile. */
.section-feature__card {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(114, 68, 55, 0.06);
}

/* Pannello visivo/media nella feature card:
   gradient di sfondo, proporzioni 4:3, centrato */
.section-feature__visual {
    background: linear-gradient(135deg, var(--nude) 0%, var(--cream-dark) 100%);
    border-radius: 12px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Regole scoped per il video player nel pannello visivo */
.section-feature__visual .video-play-btn {
    width: 48px;
    height: 48px;
}

.section-feature__visual .video-play-btn svg {
    width: 20px;
    height: 20px;
}

.section-feature__visual .video-label {
    bottom: 10px;
    font-size: 0.6rem;
}

/* Brand badge: estende icon-circle--lg con overflow:hidden
   e margine inferiore. Usare con: icon-circle icon-circle--lg brand-badge */
.brand-badge {
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.brand-badge img {
    width: 48px;
    height: auto;
}

/* Paragrafo descrittivo nella feature card (non centrato) */
.section-feature__card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* H2 interno alla feature card: dimensione adatta al contenitore,
   left-aligned. Valori esatti da V2 .academy h2 (L2304-2311). */
.section-feature__card h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--brown);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: left;
}

/* Section-label dentro la feature card: left-aligned.
   Override del text-align:center del base .section-label. */
.section-feature__card .section-label {
    text-align: left;
    margin-bottom: 0.75rem;
}


/* ═══════════════════════════════════════════════════
   FOOTER
   Sostituisce .footer e le sue classi specifiche (stesso naming).
   Valori esatti da V2 L1304-1395. Nessun conflitto/duplicato.
   ═══════════════════════════════════════════════════ */

.footer {
    background: var(--brown-dark);
    color: rgba(247, 235, 224, 0.7);
    padding: 3rem 2rem 2rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    margin-bottom: 0.75rem;
}

.footer-brand img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(0.92) sepia(0.2) saturate(0.5) hue-rotate(350deg);
}

.footer-desc {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-top: 0.75rem;
    max-width: 280px;
}

.footer h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--nude);
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul a {
    color: rgba(247, 235, 224, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color var(--transition);
}

.footer ul a:hover {
    color: var(--nude);
}

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(247, 235, 224, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: rgba(247, 235, 224, 0.4);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: rgba(247, 235, 224, 0.5);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-social a:hover {
    color: var(--nude);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}