/* --- SELF-HOSTED FONTS (latin subset) --- */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('/assets/fonts/cormorant-400-600.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 400;
    font-display: optional;
    src: url('/assets/fonts/cormorant-italic-400.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url('/assets/fonts/inter-300-600.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- PALETTE 2026: Earthy, Warm, Minimal --- */
:root {
    --bg: #FAF7F2;
    --bg-warm: #F0EBE3;
    --sage: #7C8B6F;
    --sage-light: #A3B18A;
    --sand: #C4A882;
    --terracotta: #C08B6B;
    --dark: #2A2A28;
    --text: #4A4A47;
    --text-light: #6B6B66;
    --white: #FFFFFF;
    --border: rgba(124,139,111,0.15);
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; color: var(--dark); }

/* --- HEADER --- (solo header di pagina, figlio diretto di body — non i <header> dentro <article>) */
body > header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(250,247,242,0.92);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    padding: 5px 20px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--border);
}

.logo {
    text-decoration: none;
    display: flex; align-items: center;
}
.logo img {
    height: 120px; width: auto;
}

.nav-toggle { color: var(--dark); font-size: 1.3rem; cursor: pointer; transition: color 0.3s; }
.nav-toggle:hover { color: var(--sage); }

/* --- MENU OVERLAY --- */
#menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    z-index: 999; transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 80px 20px 40px;
    box-sizing: border-box;
}
#menu-overlay.open { transform: translateY(0); }
.menu-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; color: var(--dark); text-decoration: none; margin: 12px;
    transition: color 0.3s;
}
.menu-link:hover { color: var(--sage); }
button.menu-link {
    background: none; border: none; cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
}
.menu-close {
    font-size: 1rem !important;
    color: var(--text-light) !important;
}
@media (max-height: 720px) {
    #menu-overlay { justify-content: flex-start; }
    .menu-link { font-size: 1.5rem; margin: 8px; }
    .menu-close { font-size: 0.9rem !important; }
}

/* --- CONTAINER --- */
.container { max-width: 900px; margin: 0 auto; padding: 140px 20px 40px; }

/* ====================================
   HOME VIEW
==================================== */
.hero {
    text-align: center;
    padding: 50px 0 30px;
}
.hero-label {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 4px;
    color: var(--sage); margin-bottom: 20px;
}
.hero h1 {
    font-size: 3rem; line-height: 1.15; margin-bottom: 20px;
    font-style: italic; font-weight: 400;
}
@media(min-width: 768px) { .hero h1 { font-size: 4rem; } }
.hero p {
    font-size: 1.05rem; color: var(--text-light);
    max-width: 520px; margin: 0 auto 30px; line-height: 1.7;
}
.hero-cta {
    display: inline-block; padding: 12px 35px;
    background: var(--sage); color: var(--white);
    text-decoration: none; border-radius: 50px;
    font-size: 0.85rem; font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase; transition: background 0.3s;
}
.hero-cta:hover { background: var(--sage-light); }

/* --- HERO IMAGE --- */
.hero-img {
    margin: 40px auto 0; max-width: 100%; border-radius: 16px; overflow: hidden;
}
.hero-img img {
    width: 100%; height: 350px; object-fit: cover; border-radius: 16px; display: block;
}
@media(min-width: 768px) { .hero-img img { height: 450px; } }

/* --- ABOUT SECTION --- */
.about {
    display: grid; grid-template-columns: 1fr; gap: 30px;
    padding: 60px 0; border-top: 1px solid var(--border);
}
@media(min-width: 768px) { .about { grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } }

.about-img img {
    width: 100%; height: 350px; object-fit: cover; border-radius: 12px; display: block;
}

/* --- BREAK IMAGE --- */
.break-img {
    margin: 0 0 0; border-radius: 16px; overflow: hidden;
}
.break-img img {
    width: 100%; height: 280px; object-fit: cover; border-radius: 16px; display: block;
}
@media(min-width: 768px) { .break-img img { height: 380px; } }

/* --- CHI SONO --- */
.chisono-hero {
    position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 50px;
}
.chisono-hero img {
    width: 100%; height: 400px; object-fit: cover; display: block;
}
.chisono-hero-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 30px 25px;
    background: linear-gradient(transparent, rgba(42,42,40,0.7));
}
.chisono-hero-overlay h1 {
    font-family: 'Cormorant Garamond', serif; font-size: 2.5rem;
    color: #fff; font-style: italic; font-weight: 400;
}
@media(min-width: 768px) { .chisono-hero img { height: 500px; } }

.chisono-card {
    background: var(--white); border-radius: 14px;
    padding: 35px 30px; margin-bottom: 25px;
    border-left: 3px solid var(--sage-light);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.chisono-card h2 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
    font-style: italic; color: var(--dark); margin: 0 0 12px;
}
.chisono-card p {
    color: var(--text); font-size: 0.95rem; line-height: 1.85;
}

.chisono-highlight {
    background: var(--bg-warm); border-radius: 14px;
    padding: 40px 30px; margin: 40px 0; text-align: center;
}
.chisono-highlight h2 {
    font-family: 'Cormorant Garamond', serif; font-size: 2rem;
    font-style: italic; color: var(--dark); margin-bottom: 20px;
}
.chisono-highlight p {
    color: var(--text); font-size: 0.95rem; line-height: 1.85;
    max-width: 650px; margin: 0 auto 15px;
}

.benefici-grid {
    display: grid; grid-template-columns: 1fr; gap: 18px;
    margin-top: 30px; text-align: center;
}
@media(min-width: 768px) { .benefici-grid { grid-template-columns: repeat(3, 1fr); } }
.beneficio {
    background: var(--white); border-radius: 12px; padding: 25px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.beneficio .icon {
    font-size: 1.8rem; color: var(--sage); margin-bottom: 10px;
}
.beneficio h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
    color: var(--dark); margin: 0 0 8px;
}
.beneficio p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* --- FADE IN ON SCROLL --- */
.fade-in {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1; transform: translateY(0);
}

/* --- PALINSESTO VIEW --- */
.palinsesto-wrapper { text-align: center; }
.palinsesto-img {
    width: 100%; max-width: 800px; border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); display: block; margin: 0 auto;
}

.about-text h2 { font-size: 2rem; margin-bottom: 15px; font-style: italic; }
.about-text p { margin-bottom: 15px; color: var(--text); font-size: 0.95rem; line-height: 1.8; }
.about-text .signature { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.3rem; color: var(--sage); margin-top: 10px; }

/* --- VALUES --- */
.values {
    display: grid; grid-template-columns: 1fr; gap: 20px;
    padding: 40px 0 60px;
}
@media(min-width: 768px) { .values { grid-template-columns: repeat(3, 1fr); } }

.value-card {
    background: var(--white); border-radius: 12px; padding: 30px 20px;
    text-align: center; border: 1px solid var(--border);
    transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-4px); }
.value-card i { font-size: 1.5rem; color: var(--sage); margin-bottom: 12px; display: block; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* --- QUICK NAV --- */
.quick-nav {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
    padding: 0 0 60px;
}
@media(min-width: 768px) { .quick-nav { grid-template-columns: repeat(4, 1fr); gap: 15px; } }

.qnav-card {
    background: var(--white); border-radius: 10px; padding: 22px 15px;
    text-align: center; cursor: pointer; border: 1px solid var(--border);
    transition: transform 0.3s, border-color 0.3s; text-decoration: none; color: var(--text);
}
.qnav-card:hover { transform: translateY(-3px); border-color: var(--sage); }
.qnav-card i { font-size: 1.3rem; color: var(--terracotta); margin-bottom: 8px; display: block; }
.qnav-card h3 { font-size: 0.95rem; margin-bottom: 3px; font-family: 'Inter', sans-serif; font-weight: 500; }
.qnav-card p { font-size: 0.75rem; color: var(--text-light); }

/* ====================================
   SECTION TITLE
==================================== */
.section-title {
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px;
    color: var(--text-light); margin-bottom: 25px;
}

/* ====================================
   CLASSI / ORARI
==================================== */
.location-group { margin-bottom: 40px; }
.location-name {
    font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
    color: var(--dark); margin-bottom: 15px; padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.location-name i { color: var(--terracotta); margin-right: 5px; font-size: 1rem; }

.classes-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media(min-width: 768px) { .classes-grid { grid-template-columns: repeat(2, 1fr); } }

.class-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; padding: 18px; transition: transform 0.3s, border-color 0.3s;
}
.class-card:hover { transform: translateY(-2px); border-color: var(--sage); }
.class-day { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--sage); font-weight: 600; margin-bottom: 3px; }
.class-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--dark); margin-bottom: 5px; }
.class-time { font-size: 0.9rem; color: var(--terracotta); font-weight: 500; margin-bottom: 3px; }
.class-meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 10px; }

.btn-book {
    display: inline-block; padding: 8px 22px;
    background: var(--sage); color: var(--white);
    border: none; border-radius: 50px; cursor: pointer;
    font-size: 0.8rem; font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase; transition: background 0.3s;
}
.btn-book:hover { background: var(--sage-light); }
.btn-book:disabled { opacity: 0.4; cursor: not-allowed; }

/* ====================================
   EVENTI (stile card Gardaglou)
==================================== */
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
@media(min-width: 768px) { .events-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.card {
    position: relative; aspect-ratio: 4/5; border-radius: 12px;
    overflow: hidden; cursor: pointer; background-color: var(--bg-warm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: scale(1.03); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.card img { width: 100%; height: 100%; object-fit: cover; }
.card-info {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 40px 12px 15px; background: linear-gradient(to top, rgba(42,42,40,0.9), transparent);
}
.card h3 { font-size: 0.95rem; color: #fff; font-family: 'Inter', sans-serif; font-weight: 500; margin-bottom: 3px; }
.card p { font-size: 0.8rem; color: var(--sand); font-weight: 500; }

.card.coming-soon {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    border: 2px dashed var(--border); background: var(--white);
}
.card.coming-soon h3 { color: var(--text-light); text-align: center; font-family: 'Inter', sans-serif; font-size: 0.85rem; }
.card.coming-soon i { font-size: 1.8rem; color: var(--sage-light); margin-bottom: 10px; }

/* --- EVENT DETAIL MODAL --- */
#event-detail {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg); z-index: 2000; overflow-y: auto;
}
.detail-hero { width: 100%; height: 50vh; position: relative; }
.detail-hero img { width: 100%; height: 100%; object-fit: cover; mask-image: linear-gradient(to bottom, black 60%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%); }
.close-btn { position: absolute; top: 20px; right: 20px; background: rgba(0,0,0,0.3); color: white; width: 40px; height: 40px; border: none; padding: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2001; font-size: 1.1rem; font-family: inherit; }
.detail-content { padding: 20px; margin-top: -50px; position: relative; max-width: 700px; }
.detail-title { font-size: 2.2rem; line-height: 1.1; margin-bottom: 10px; color: var(--dark); font-style: italic; }
.detail-meta { display: flex; gap: 15px; font-size: 0.85rem; color: var(--terracotta); margin-bottom: 20px; font-weight: 500; }
.detail-desc { font-size: 0.95rem; line-height: 1.7; color: var(--text); margin-bottom: 100px; white-space: pre-line; }
.cta-bar { position: fixed; bottom: 0; left: 0; width: 100%; padding: 15px 20px; background: rgba(250,247,242,0.95); backdrop-filter: blur(10px); border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.price { font-size: 1.3rem; font-family: 'Cormorant Garamond', serif; font-weight: 600; color: var(--dark); }
.btn-buy { background: var(--sage); color: white; padding: 12px 22px; border-radius: 50px; text-decoration: none; font-weight: 500; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; transition: background 0.3s, color 0.3s; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; line-height: 1; }
.btn-buy:hover { background: var(--sage-light); }
.cta-buttons { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn-whatsapp { background: #25D366; }
.btn-whatsapp:hover { background: #1ebe57; }
.btn-outline { background: transparent; color: var(--sage); border: 1.5px solid var(--sage); }
.btn-outline:hover { background: var(--sage); color: white; }
@media (max-width: 600px) {
    .cta-bar { flex-direction: column; align-items: stretch; gap: 10px; padding: 12px 15px; }
    .cta-bar .price { text-align: center; }
    .cta-buttons { width: 100%; justify-content: stretch; }
    .cta-buttons > a, .cta-buttons > button { flex: 1; justify-content: center; padding: 12px 14px; font-size: 0.75rem; }
}

/* ====================================
   BOOKING MODAL
==================================== */
#booking-modal {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(42,42,40,0.5); backdrop-filter: blur(4px);
    z-index: 3000; justify-content: center; align-items: center; padding: 20px;
}
#booking-modal.open { display: flex; }
.booking-box {
    background: var(--white); border-radius: 16px; padding: 30px;
    max-width: 420px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.booking-box h2 { font-size: 1.4rem; color: var(--dark); margin-bottom: 3px; font-style: italic; }
.booking-box .booking-class-info { font-size: 0.85rem; color: var(--text-light); margin-bottom: 20px; }
.booking-box label { display: block; font-size: 0.8rem; color: var(--text-light); margin-bottom: 4px; margin-top: 14px; text-transform: uppercase; letter-spacing: 1px; }
.booking-box input {
    width: 100%; padding: 11px 14px; border-radius: 8px;
    border: 1px solid var(--border); background: var(--bg);
    color: var(--dark); font-size: 0.95rem; font-family: 'Inter', sans-serif;
}
.booking-box input:focus { outline: none; border-color: var(--sage); }
.booking-box .btn-submit { width: 100%; margin-top: 22px; padding: 12px; border: none; border-radius: 50px; }
.booking-box .btn-close-booking { background: none; border: none; color: var(--text-light); cursor: pointer; font-size: 0.85rem; margin-top: 12px; display: block; text-align: center; width: 100%; }
.booking-msg { margin-top: 12px; font-size: 0.9rem; text-align: center; }
.booking-msg.success { color: var(--sage); }
.booking-msg.error { color: #c0392b; }

/* ====================================
   CONTATTI
==================================== */
.page-section { display: none; padding-top: 30px; animation: fadeIn 0.5s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.contact-box { max-width: 700px; margin: 0 auto; text-align: center; }
.contact-title { font-size: 2.5rem; color: var(--dark); margin-bottom: 30px; font-style: italic; }
.contact-text { font-size: 1rem; color: var(--text); line-height: 1.7; margin-bottom: 12px; }
.contact-link { color: var(--sage); font-weight: 500; text-decoration: none; transition: color 0.3s; }
.contact-link:hover { color: var(--terracotta); }

/* ====================================
   FOOTER
==================================== */
footer {
    text-align: center; padding: 50px 20px; margin-top: 50px;
    border-top: 1px solid var(--border); color: var(--text-light); font-size: 0.85rem;
}
footer p { margin-bottom: 5px; }
footer a { color: var(--text-light); text-decoration: none; transition: color 0.3s; }
footer a:hover { color: var(--sage); }
.legal-links { margin: 20px 0; font-weight: 500; }
.legal-links a { margin: 0 10px; color: var(--text); font-size: 0.8rem; }
.legal-links a:hover { color: var(--sage); }

/* ====================================
   WHATSAPP
==================================== */
.whatsapp-container { position: fixed; bottom: 25px; right: 25px; z-index: 1000; display: flex; align-items: center; gap: 10px; }
.whatsapp-label { background: var(--white); color: var(--dark); padding: 8px 14px; border-radius: 50px; font-weight: 500; font-size: 0.8rem; box-shadow: 0 2px 12px rgba(0,0,0,0.1); opacity: 0; animation: slideIn 0.5s ease-out 1s forwards; position: relative; }
.whatsapp-label::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 7px solid var(--white); }
.whatsapp-btn { background: #25d366; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 12px rgba(0,0,0,0.15); transition: transform 0.3s; text-decoration: none; }
.whatsapp-btn:hover { transform: scale(1.08); }
.whatsapp-img { color: #fff; font-size: 28px; line-height: 1; }
@keyframes slideIn { from { opacity: 0; transform: translateX(15px); } to { opacity: 1; transform: translateX(0); } }

/* ====================================
   LEGAL PAGES (privacy, termini)
==================================== */
.legal-container {
    max-width: 800px; margin: 0 auto; padding: 140px 20px 60px;
    line-height: 1.8;
}
.legal-container .back-link {
    display: inline-block; margin-bottom: 20px;
    color: var(--text-light); text-decoration: none;
    font-size: 0.9rem;
}
.legal-container .back-link:hover { color: var(--sage); }
.legal-container h1 {
    font-family: 'Cormorant Garamond', serif; color: var(--dark);
    margin-bottom: 30px; font-weight: 400; font-size: 2.5rem; font-style: italic;
}
.legal-container h2 {
    color: var(--dark); margin-top: 30px; margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
}
.legal-container p { margin-bottom: 12px; }
.legal-container a { color: var(--sage); }

/* ====================================
   FAQ ACCORDION
==================================== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    background: var(--white); border-radius: 10px;
    margin-bottom: 12px; border: 1px solid var(--border);
    overflow: hidden;
}
.faq-question {
    padding: 18px 22px; cursor: pointer;
    font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
    color: var(--dark); display: flex; justify-content: space-between;
    align-items: center; gap: 15px; font-style: italic;
}
.faq-question::after {
    content: '+'; font-size: 1.5rem; color: var(--sage);
    transition: transform 0.3s; font-family: 'Inter', sans-serif;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 22px;
    color: var(--text); font-size: 0.95rem; line-height: 1.75;
}
.faq-item.open .faq-answer {
    max-height: 600px; padding: 0 22px 22px;
}

/* ====================================
   STEP / TIMELINE (Lezioni individuali, Gravidanza)
==================================== */
.step-list {
    display: grid; grid-template-columns: 1fr; gap: 18px;
    max-width: 720px; margin: 25px auto;
}
.step-item {
    background: var(--white); border-radius: 12px;
    padding: 22px 25px; border-left: 3px solid var(--sage);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    display: flex; gap: 18px; align-items: flex-start;
}
.step-number {
    background: var(--sage); color: var(--white);
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
    flex-shrink: 0;
}
.step-content h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
    color: var(--dark); margin: 0 0 5px; font-style: italic;
}
.step-content p { font-size: 0.95rem; color: var(--text); line-height: 1.7; }

/* ====================================
   PRACTICAL LIST (cosa portare, controindicazioni)
==================================== */
.practical-list {
    background: var(--bg-warm); border-radius: 14px;
    padding: 30px 35px; margin: 30px 0;
}
.practical-list h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
    color: var(--dark); margin-bottom: 18px; font-style: italic;
}
.practical-list ul { list-style: none; padding: 0; }
.practical-list li {
    padding: 8px 0; padding-left: 25px; position: relative;
    color: var(--text); font-size: 0.95rem; line-height: 1.7;
}
.practical-list li::before {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--sage); position: absolute; left: 0; top: 12px;
    font-size: 0.85rem;
}
.practical-list.warning li::before { content: '\f071'; color: var(--terracotta); }

/* ====================================
   TRIMESTRE CARDS (gravidanza)
==================================== */
.trimestre-grid {
    display: grid; grid-template-columns: 1fr; gap: 22px;
    margin: 30px 0;
}
@media(min-width: 768px) { .trimestre-grid { grid-template-columns: repeat(3, 1fr); } }
.trimestre-card {
    background: var(--white); border-radius: 14px;
    padding: 28px 25px; border-top: 4px solid var(--sage-light);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.trimestre-card .trimestre-label {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px;
    color: var(--terracotta); margin-bottom: 8px; font-weight: 600;
}
.trimestre-card h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.45rem;
    color: var(--dark); margin-bottom: 12px; font-style: italic;
}
.trimestre-card p {
    font-size: 0.92rem; color: var(--text); line-height: 1.75;
}

/* ====================================
   DOPPIO CTA
==================================== */
.double-cta {
    display: grid; grid-template-columns: 1fr; gap: 15px;
    max-width: 600px; margin: 40px auto;
}
@media(min-width: 768px) { .double-cta { grid-template-columns: 1fr 1fr; } }
.double-cta .hero-cta { width: 100%; text-align: center; }
.hero-cta.outline {
    background: transparent; color: var(--sage);
    border: 1.5px solid var(--sage);
}
.hero-cta.outline:hover { background: var(--sage); color: var(--white); }
.hero-cta.whatsapp {
    background: #25d366;
}
.hero-cta.whatsapp:hover { background: #1eb455; }

/* ====================================
   MAP EMBED (contatti)
==================================== */
.map-embed {
    width: 100%; max-width: 800px; margin: 30px auto;
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.map-embed iframe {
    width: 100%; height: 380px; border: none; display: block;
}

/* ====================================
   BLOG GRID
==================================== */
.blog-grid {
    display: grid; grid-template-columns: 1fr; gap: 25px;
    margin: 30px 0;
}
@media(min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
    background: var(--white); border-radius: 14px; overflow: hidden;
    border: 1px solid var(--border); transition: transform 0.3s;
    text-decoration: none; color: inherit; display: block;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img {
    width: 100%; height: 200px; object-fit: cover; display: block;
    background: var(--bg-warm);
}
.blog-card-body { padding: 20px; }
.blog-card .blog-date {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
    color: var(--text-light); margin-bottom: 8px;
}
.blog-card h2 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.35rem;
    font-style: italic; margin: 0 0 10px; color: var(--dark);
}
.blog-card p {
    font-size: 0.9rem; color: var(--text); line-height: 1.6;
    margin-bottom: 12px;
}
.blog-card .blog-readmore {
    color: var(--sage); font-size: 0.85rem; font-weight: 500;
}
.blog-empty {
    text-align: center; padding: 50px 20px;
    background: var(--bg-warm); border-radius: 14px;
    color: var(--text); font-size: 1rem;
}

/* ====================================
   HOME 2026 — TRUST BAR
==================================== */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 22px 18px;
    background: var(--bg-warm);
    border-radius: 14px;
    margin: 30px 0 10px;
    text-align: center;
}
@media(min-width: 768px) {
    .trust-bar { grid-template-columns: repeat(4, 1fr); padding: 28px; }
}
.trust-item {
    padding: 10px 6px;
    border-bottom: 1px solid var(--border);
}
.trust-bar .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
.trust-bar .trust-item:nth-last-child(-n+2) { border-bottom: none; }
@media(min-width: 768px) {
    .trust-item { border-bottom: none; }
    .trust-bar .trust-item { border-right: 1px solid var(--border); }
    .trust-bar .trust-item:last-child { border-right: none; }
    .trust-bar .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
}
.trust-item .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem; font-style: italic;
    color: var(--sage); display: block;
    line-height: 1.1; margin-bottom: 4px;
}
.trust-item .label {
    font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 1.2px; color: var(--text-light);
    line-height: 1.3;
}

/* ====================================
   HOME 2026 — SERVICES (3 CARDS)
==================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 30px 0 50px;
}
@media(min-width: 768px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 26px 28px;
    text-decoration: none;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(42,42,40,0.07);
    border-color: var(--sage-light);
}
.service-card .icon-circle {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-warm);
    color: var(--sage);
    font-size: 1.3rem;
    margin-bottom: 18px;
}
.service-card.gravidanza .icon-circle {
    background: rgba(192,139,107,0.15);
    color: var(--terracotta);
}
.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem; font-style: italic;
    margin-bottom: 12px; color: var(--dark);
    line-height: 1.2;
}
.service-card .desc {
    color: var(--text); line-height: 1.65;
    margin-bottom: 18px; font-size: 0.95rem;
}
.service-card ul {
    list-style: none; padding: 0; margin: 0 0 22px;
}
.service-card ul li {
    padding-left: 22px;
    position: relative;
    font-size: 0.88rem;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.5;
}
.service-card ul li::before {
    content: "\2713";
    position: absolute; left: 0; top: 0;
    color: var(--sage);
    font-weight: 600;
}
.service-card.gravidanza ul li::before { color: var(--terracotta); }
.service-card .card-cta {
    margin-top: auto;
    color: var(--sage);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.25s ease;
}
.service-card.gravidanza .card-cta { color: var(--terracotta); }
.service-card:hover .card-cta { gap: 10px; }

/* ====================================
   HOME 2026 — SEO LONG-FORM
==================================== */
.seo-content {
    margin: 60px 0;
    padding: 50px 0 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.seo-content > h2 {
    font-size: 2rem; font-style: italic;
    text-align: center; margin-bottom: 35px;
    line-height: 1.2;
}
@media(min-width: 768px) {
    .seo-content > h2 { font-size: 2.4rem; }
}
.seo-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
@media(min-width: 768px) {
    .seo-cols { grid-template-columns: 1fr 1fr; gap: 50px; }
}
.seo-cols h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 600;
    margin: 0 0 10px; color: var(--dark);
    line-height: 1.3;
}
.seo-cols p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 18px;
}
.seo-cols .seo-block { margin-bottom: 10px; }

/* ====================================
   HOME 2026 — LOCATIONS
==================================== */
.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0 50px;
}
@media(min-width: 768px) {
    .locations-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}
.location-card {
    background: var(--bg-warm);
    border-radius: 16px;
    padding: 28px 26px;
}
.location-card .badge {
    display: inline-block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--terracotta);
    margin-bottom: 10px;
    font-weight: 500;
}
.location-card.secondary .badge { color: var(--sage); }
.location-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem; font-style: italic;
    margin-bottom: 8px; color: var(--dark);
}
.location-card .addr {
    color: var(--text); margin-bottom: 4px; font-size: 0.95rem;
    line-height: 1.5;
}
.location-card .note {
    color: var(--text-light); font-size: 0.85rem;
    line-height: 1.5; margin-bottom: 14px;
}
.location-card .loc-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--sage); font-size: 0.8rem; text-decoration: none;
    text-transform: uppercase; letter-spacing: 1.2px;
    font-weight: 500; transition: gap 0.25s ease;
}
.location-card .loc-link:hover { gap: 10px; }

/* ====================================
   HOME 2026 — FINAL CTA
==================================== */
.final-cta {
    margin: 70px 0 30px;
    padding: 50px 28px;
    background: var(--sage);
    border-radius: 22px;
    text-align: center;
    color: var(--white);
}
@media(min-width: 768px) {
    .final-cta { padding: 70px 40px; }
}
.final-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-style: italic;
    margin-bottom: 14px;
    color: var(--white);
    line-height: 1.2;
}
@media(min-width: 768px) {
    .final-cta h2 { font-size: 2.4rem; }
}
.final-cta p {
    color: rgba(255,255,255,0.92);
    max-width: 480px; margin: 0 auto 26px;
    line-height: 1.7; font-size: 0.98rem;
}
.final-cta .cta-buttons {
    display: flex; flex-direction: column; gap: 12px;
    align-items: center;
}
@media(min-width: 600px) {
    .final-cta .cta-buttons { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}
.final-cta .btn-cta {
    display: inline-block;
    padding: 13px 30px;
    background: var(--white); color: var(--sage);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.82rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1.2px;
    transition: opacity 0.25s, transform 0.25s;
    min-width: 240px;
    text-align: center;
}
@media(min-width: 600px) {
    .final-cta .btn-cta { min-width: auto; }
}
.final-cta .btn-cta.outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
}
.final-cta .btn-cta:hover { opacity: 0.9; transform: translateY(-2px); }

/* ====================================
   HOME 2026 — SECTION TITLES
==================================== */
.home-section-title {
    text-align: center;
    margin: 60px 0 10px;
}
.home-section-title .eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sage);
    margin-bottom: 10px;
    font-weight: 500;
}
.home-section-title h2 {
    font-size: 2rem; font-style: italic;
    line-height: 1.2;
    margin-bottom: 6px;
}
@media(min-width: 768px) {
    .home-section-title h2 { font-size: 2.4rem; }
}
.home-section-title .sub {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}
.blog-empty i { font-size: 2rem; color: var(--sage-light); margin-bottom: 15px; display: block; }

/* ====================================
   PLACEHOLDER (sezioni in attesa di contenuto, visibili solo internamente)
==================================== */
.placeholder-section {
    background: #fff8e1;
    border-left: 4px solid #f5b942;
    padding: 18px 22px;
    margin: 18px 0;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    color: #5a4a1f;
}
.placeholder-section strong { color: #b07012; letter-spacing: 0.5px; text-transform: uppercase; font-size: 0.78rem; }
.placeholder-section p { margin: 6px 0; line-height: 1.55; font-size: 0.92rem; }
.placeholder-section .ph-meta { font-size: 0.78rem; color: #8b6f30; font-style: italic; margin-top: 6px; }

/* ====================================
   FOOTER — APPROFONDIMENTI ROW
==================================== */
.footer-approfondimenti {
    margin-top: 14px;
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--text-light);
}
.footer-approfondimenti .label {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.7rem;
    color: var(--dark);
    margin-right: 6px;
}

/* ====================================
   BREADCRUMB
==================================== */
.breadcrumb {
    max-width: 720px;
    margin: 14px auto 0;
    padding: 0 20px;
    font-size: 0.82rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}
.breadcrumb a { color: var(--dark); text-decoration: underline; text-decoration-color: var(--sage); text-underline-offset: 3px; }
.breadcrumb a:hover { text-decoration-color: var(--dark); }
.breadcrumb .sep { margin: 0 6px; opacity: 0.7; }
.breadcrumb .current { color: var(--text); }

/* ====================================
   LONG-FORM CONTENT (pillar pages: gravidanza, anukalana, ...)
   Restituisce respiro al testo: paragrafi spaziati, H3 ariosi, pull-quote
==================================== */
.long-form {
    max-width: 720px;
    margin: 25px auto;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text);
}
.long-form p { margin: 0 0 1.15em; }
.long-form p:last-child { margin-bottom: 0; }
.long-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    color: var(--dark);
    margin: 2em 0 0.6em;
    font-weight: 600;
    line-height: 1.3;
}
.long-form ul { margin: 0 0 1.2em 1.4em; line-height: 1.8; }
.long-form ul li { margin-bottom: 0.45em; }
.long-form a { color: var(--sage); font-weight: 500; }

/* Pull-quote / highlight inline */
.long-form .pullquote {
    border-left: 3px solid var(--sage);
    padding: 4px 18px;
    margin: 1.6em 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--sage);
    line-height: 1.45;
}

/* ====================================
   TRIMESTRE SECTION (a piena larghezza, sequenziale, NON grid)
   Sostituisce il vecchio pattern .trimestre-grid quando il contenuto è lungo
==================================== */
.trimestre-section {
    max-width: 720px;
    margin: 30px auto;
    background: var(--white);
    border-radius: 14px;
    padding: 32px 32px 28px;
    border-top: 4px solid var(--sage-light);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.trimestre-section + .trimestre-section { margin-top: 22px; }
.trimestre-section .trimestre-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--terracotta);
    margin-bottom: 6px;
    font-weight: 600;
    display: block;
}
.trimestre-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    color: var(--dark);
    margin: 0 0 18px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.2;
}
.trimestre-section p {
    font-size: 0.98rem;
    color: var(--text);
    line-height: 1.85;
    margin: 0 0 1.05em;
}
.trimestre-section p:last-child { margin-bottom: 0; }
@media (max-width: 600px) {
    .trimestre-section { padding: 26px 22px 22px; }
    .trimestre-section h3 { font-size: 1.55rem; }
}

/* Price table — usata su /yoga-genova-prezzi/ */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 28px;
    font-size: 0.95rem;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.price-table thead {
    background: var(--sage);
    color: var(--white);
}
.price-table th {
    text-align: left;
    padding: 12px 14px;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}
.price-table td {
    padding: 12px 14px;
    border-top: 1px solid var(--bg-warm);
    vertical-align: top;
}
.price-table td:nth-child(2) {
    font-weight: 600;
    color: var(--terracotta);
    white-space: nowrap;
}
.price-table tbody tr:hover { background: var(--bg-warm); }
@media (max-width: 600px) {
    .price-table, .price-table thead, .price-table tbody, .price-table tr, .price-table th, .price-table td {
        display: block;
        width: 100%;
    }
    .price-table thead { display: none; }
    .price-table tr {
        border-bottom: 1px solid var(--sage-light);
        padding: 10px 0;
    }
    .price-table td {
        border: none;
        padding: 4px 14px;
    }
    .price-table td:first-child { font-weight: 600; padding-top: 12px; }
    .price-table td:nth-child(2) { font-size: 1.1rem; }
    .price-table td:nth-child(3) { font-size: 0.88rem; color: var(--text-light); padding-bottom: 12px; }
}

/* Schedule table — usata su /yoga-genova-carignano/ */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 28px;
    font-size: 0.95rem;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.schedule-table thead {
    background: var(--sage);
    color: var(--white);
}
.schedule-table th {
    text-align: left;
    padding: 12px 14px;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}
.schedule-table td {
    padding: 11px 14px;
    border-top: 1px solid var(--bg-warm);
    vertical-align: top;
}
.schedule-table td:first-child {
    font-weight: 600;
    color: var(--dark);
    width: 28%;
}
.schedule-table td:nth-child(2) {
    color: var(--terracotta);
    font-weight: 600;
    white-space: nowrap;
    width: 22%;
}
.schedule-table tbody tr:hover { background: var(--bg-warm); }
@media (max-width: 600px) {
    .schedule-table, .schedule-table thead, .schedule-table tbody, .schedule-table tr, .schedule-table th, .schedule-table td {
        display: block;
        width: 100%;
    }
    .schedule-table thead { display: none; }
    .schedule-table tr {
        border-bottom: 1px solid var(--sage-light);
        padding: 10px 0;
    }
    .schedule-table td {
        border: none;
        padding: 4px 14px;
        width: auto;
    }
    .schedule-table td:first-child { padding-top: 12px; font-size: 1rem; }
    .schedule-table td:nth-child(2) { font-size: 1.05rem; }
    .schedule-table td:nth-child(3) { font-size: 0.92rem; color: var(--text); padding-bottom: 12px; }
}

/* ============================================
   BLOG — HUB CATEGORIE (Sprint 2)
   ============================================ */
.blog-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 25px auto 0;
}
.blog-cat-card {
    display: block;
    padding: 28px 22px;
    background: var(--bg-warm);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid transparent;
}
.blog-cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    border-color: var(--sage-light);
}
.blog-cat-card i {
    font-size: 1.5rem;
    color: var(--sage);
    margin-bottom: 10px;
    display: block;
}
.blog-cat-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    margin: 0 0 6px;
    color: var(--dark);
}
.blog-cat-card p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0 0 12px;
    color: var(--text);
}
.blog-cat-count {
    font-size: 0.78rem;
    color: var(--sage);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-cat-card-empty {
    opacity: 0.6;
    cursor: not-allowed;
}
.blog-cat-card-empty:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.blog-card-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    color: var(--sage-light);
    font-size: 2.2rem;
    height: 180px;
}
.blog-card-cat {
    background: var(--sage);
    color: var(--bg);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 4px;
}

/* ============================================
   BLOG — ARTICOLO SINGOLO (Sprint 2)
   ============================================ */
.post-container {
    max-width: 760px;
    margin: 30px auto 60px;
    padding: 0 20px;
}
.post-header {
    text-align: center;
    margin-bottom: 30px;
}
.post-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0 0 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.post-meta span { opacity: 0.7; }
.post-category {
    background: var(--dark);
    color: var(--bg);
    padding: 3px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.post-category:hover { background: var(--sage); color: var(--bg); }
.post-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    line-height: 1.2;
    margin: 0 0 14px;
    color: var(--dark);
}
.post-summary {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
    max-width: 620px;
    margin: 0 auto;
}
.post-cover {
    margin: 30px 0;
}
.post-cover img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}
.post-video-wrap {
    margin: 30px 0;
}
.post-video-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.post-video-label i { color: #ff0000; margin-right: 6px; }
.post-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    background: var(--bg-warm);
}
.post-video iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}
.post-body {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text);
}
.post-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin: 2em 0 0.6em;
    line-height: 1.25;
}
.post-body h3 { font-size: 1.4rem; }
.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5em 0;
    display: block;
}
.post-body blockquote {
    border-left: 3px solid var(--sage);
    padding: 6px 18px;
    margin: 1.5em 0;
    font-style: italic;
    color: var(--text-light);
    background: var(--bg-warm);
}
.post-body code {
    background: var(--bg-warm);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.92em;
}
.post-body pre {
    background: var(--bg-warm);
    padding: 14px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 1.5em 0;
}
.post-body pre code { background: transparent; padding: 0; }
.post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 0.95rem;
}
.post-body th, .post-body td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--sage-light);
    text-align: left;
}
.post-body th {
    background: var(--sage);
    color: var(--bg);
    font-weight: 600;
}
.post-toc {
    background: var(--bg-warm);
    border-left: 3px solid var(--sage);
    padding: 18px 24px;
    margin: 0 0 30px;
    border-radius: 0 8px 8px 0;
}
.post-toc .toc-title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--dark);
    font-weight: 700;
    margin: 0 0 10px;
}
.post-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.post-toc li {
    margin: 4px 0;
    font-size: 0.92rem;
    line-height: 1.5;
}
.post-toc a {
    color: var(--text);
    text-decoration: none;
}
.post-toc a:hover { color: var(--sage); }
.post-tags {
    margin: 30px 0;
    text-align: center;
}
.post-tag {
    display: inline-block;
    background: var(--bg-warm);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 0.78rem;
    margin: 3px;
}
.post-related {
    margin: 40px 0 0;
    padding: 22px 26px;
    background: var(--bg-warm);
    border-radius: 10px;
    border-left: 3px solid var(--terracotta);
}
.post-related-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--terracotta);
    font-weight: 700;
    margin: 0 0 8px;
}
.post-related-link {
    color: var(--dark);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
}
.post-related-link i { color: var(--terracotta); margin-right: 8px; font-size: 1rem; }
.post-related-link:hover { color: var(--terracotta); }

@media (max-width: 600px) {
    .post-header h1 { font-size: 1.9rem; }
    .post-body { font-size: 0.98rem; line-height: 1.75; }
    .post-body h2 { font-size: 1.5rem; }
    .post-body h3 { font-size: 1.2rem; }
}

/* ====================================
   GOOGLE REVIEWS BLOCK (build-reviews.js)
   Generato automaticamente fra <!-- BUILD:REVIEWS:START/END -->
   su index.html e chi-sono/index.html.
==================================== */
.google-reviews {
    max-width: 1100px;
    margin: 60px auto;
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.gr-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.gr-header-left { display: flex; align-items: center; gap: 12px; }
.gr-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
    line-height: 1;
}
.gr-logo-blue   { color: #4285F4; }
.gr-logo-red    { color: #EA4335; }
.gr-logo-yellow { color: #FBBC05; }
.gr-logo-green  { color: #34A853; }
.gr-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}
.gr-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}
.gr-rating-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}
.gr-rating-stars { display: inline-flex; gap: 1px; }
.gr-star { color: #DADADA; font-size: 1.05rem; line-height: 1; }
.gr-star-full { color: #FBBC05; }
.gr-rating-count {
    color: var(--text-light);
    font-size: 0.9rem;
}
.gr-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}
.gr-review-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gr-review-header { display: flex; align-items: center; gap: 12px; }
.gr-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.gr-review-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.gr-review-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.gr-review-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.92rem;
    text-decoration: none;
    line-height: 1.2;
}
a.gr-review-name:hover { text-decoration: underline; }
.gr-review-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-light);
}
.gr-review-stars { display: inline-flex; gap: 1px; }
.gr-review-rating-row .gr-star { font-size: 0.85rem; }
.gr-review-time { white-space: nowrap; }
.gr-review-text {
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}
.gr-footer-link {
    text-align: center;
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}
.gr-cta {
    color: var(--dark);
    text-decoration: underline;
    text-decoration-color: var(--sage);
    text-underline-offset: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
}
.gr-cta:hover { text-decoration-color: var(--dark); }
.gr-cta i { font-size: 0.78rem; margin-left: 4px; }

@media (max-width: 600px) {
    .google-reviews { margin: 40px auto; padding: 22px 18px; }
    .gr-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .gr-rating-value { font-size: 1.3rem; }
    .gr-reviews-grid { grid-template-columns: 1fr; gap: 12px; }
    .gr-review-card { padding: 14px; }
}

/* ====================================
   A11Y — SKIP LINK + NAV-TOGGLE BUTTON RESET
==================================== */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--dark);
    color: var(--white);
    padding: 12px 20px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    z-index: 10000;
    border-radius: 0 0 4px 0;
}
.skip-link:focus {
    left: 0;
    outline: 3px solid var(--terracotta);
    outline-offset: 2px;
}
button.nav-toggle {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
}

/* ====================================
   A11Y — RIDUCI MOVIMENTO (WCAG 2.3.3)
==================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade-in { opacity: 1 !important; transform: none !important; }
}
