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

body {
    background: #f5f1eb;
    color: #4a3c31;
    font-family: 'Manrope', sans-serif;
}

/* ================ PERSONALIZZAZIONE SCROLLBAR ================ */

/* Per i browser moderni (Firefox) */
html {
    scrollbar-width: thin;
    scrollbar-color: #C5A059 #201F1A;

    scroll-behavior: smooth;
}

/* Per i browser basati su WebKit/Chromium (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Sfondo del binario della scrollbar */
::-webkit-scrollbar-track {
    background: #201F1A;
}

/* La barra di scorrimento vera e propria */
::-webkit-scrollbar-thumb {
    background-color: #C5A059;
    border-radius: 2px;
    border: 2px solid #201F1A;
}

/* Effetto al passaggio del mouse sulla barra */
::-webkit-scrollbar-thumb:hover {
    background-color: #D4B06E;
}

/* =========== HEADER + NAV ============ */

/* header principale */
.main-header {
    background: #202020;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(12, 11, 10, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Area Logo */
.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: rgba(251, 250, 246, 0.82);
}

.brand-name span {
    color: #C5A059;
}

.brand-sub {
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(251, 250, 246, 0.60);
    opacity: 0.7;
    margin-top: -5px;
}

/* Menu di navigazione */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(251, 250, 246, 0.82);
    /* Link chiari */
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #C5A059;
    /* Hover oro */
}

/* Pulsante Contattami / Chiama ora */
.btn-call {
    background: #C5A059;
    /* Colore oro d'accento come da immagine */
    color: #2D2D2D;
    /* Testo scuro per massimo contrasto dentro il bottone */
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-call:hover {
    background: #D4B06E;
}

.fa-solid {
    font-size: 16px;
}

/* ================ SEZIONE HERO =============== */
.hero {
    position: relative;
    padding: 170px 0 180px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;

    background-image:
        linear-gradient(to right, rgba(32, 31, 26, 0.88) 45%, rgba(32, 31, 26, 0.4) 100%),
        url('img/hero-modern.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero .container {
    width: min(1400px, 90%);
    margin: 0 auto;
    display: block;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-content::before {
    content: "RISTRUTTURAZIONI CHIAVI IN MANO · ROMA E LAZIO";
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #AC8D5D;
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    line-height: 1.1;
    color: rgba(251, 250, 246, 0.82);
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-title .accent-text {
    display: block;
    color: #C5A059;
    font-style: italic;
    margin-top: 5px;
}

.hero-description {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    max-width: 550px;
    margin-bottom: 45px;
    color: rgba(251, 250, 246, 0.70);
}

/* Pulsanti Hero */
.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #C5A059;
    color: #2D2D2D;
    padding: 15px 32px;
    text-decoration: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #D4B06E;
}

.btn-secondary {
    border: 1px solid rgba(251, 250, 246, 0.4);
    color: rgba(251, 250, 246, 0.82);
    background: transparent;
    padding: 15px 32px;
    text-decoration: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #C5A059;
    color: #C5A059;
    background: rgba(197, 160, 89, 0.05);
}

/* =========== SEZIONE LA PROMESSA ============ */
.promise-section {
    background-color: #2D2D2D;
    padding: 120px 0;
    text-align: center;
}

.promise-container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.promise-label {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #AC8D5D;
    margin-bottom: 35px;
}

.promise-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    line-height: 1.2;
    font-weight: 400;
    color: rgba(251, 250, 246, 0.82);
    max-width: 900px;
    margin: 0 auto 35px auto;
}

.promise-title .accent-text {
    display: block;
    color: #C5A059;
    font-style: italic;
    margin-top: 5px;
}

.promise-description {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(251, 250, 246, 0.70);
    max-width: 680px;
    margin: 0 auto 75px auto;
}

/* Griglia a 3 Colonne in linea con bordi divisori */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(230, 221, 202, 0.15);
    background: transparent;
}

.promise-card {
    padding: 50px 40px;
    text-align: left;
    border-right: 1px solid rgba(230, 221, 202, 0.15);
    transition: background 0.3s ease;
}

/* Rimuove il bordo destro dall'ultima card della riga */
.promise-card:last-child {
    border-right: none;
}

.card-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #C5A059;
    margin-bottom: 25px;
}

.promise-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: rgba(251, 250, 246, 0.82);
    margin-bottom: 15px;
}

.promise-card p {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(251, 250, 246, 0.60);
}

.promise-card:hover {
    background: rgba(251, 250, 246, 0.02);
}

/* =========== SEZIONE CHI SONO ============= */
.about-section {
    padding: 120px 0;
    background-color: #FBFAF6;
}

.about-container {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    width: 90%;
}

/* Colonna Immagine e Box Citazione */
.about-image-side {
    flex: 0 0 480px;
}

.image-box {
    width: 100%;
    position: relative;
    background: #E2D9C6;
    aspect-ratio: 1000 / 1250;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Il box oro con la citazione sovrapposto nell'angolo in basso a sinistra */
.quote-box {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: #C5A059;
    padding: 30px 25px;
    width: 190px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quote-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    line-height: 1.4;
    color: #2D2D2D;
    margin: 0;
}

/* Colonna Testo */
.about-text-side {
    flex: 1;
}

.section-label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #AC8D5D;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 35px;
    font-weight: 400;
    color: #2D2D2D;
}

.about-description p {
    margin-bottom: 22px;
    line-height: 1.75;
    font-size: 16px;
    color: #4A4744;
    font-family: 'Manrope', sans-serif;
}

.about-description strong {
    color: #2D2D2D;
    font-weight: 700;
}

/* Griglia Metadati inferiore */
.about-meta-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid #E6DDCA;
}

.meta-item {
    flex: 1;
}

.meta-item h5 {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #7F5B30;
    margin-bottom: 6px;
}

.meta-item p {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #55524C;
}

/* ============= SEZIONE SERVIZI ========== */
.services-section {
    background-color: #F3EDE1;
    padding: 120px 0 140px 0;
}

.services-container {
    width: min(1300px, 90%);
    margin: 0 auto;
}

/* Intro */
.services-intro {
    max-width: 800px;
    margin-bottom: 60px;
}

.services-label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #AC8D5D;
    margin-bottom: 20px;
    font-weight: 600;
}

.services-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2D2D2D;
    margin-bottom: 25px;
}

.services-description {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #4A4744;
}

/* Timeline a 5 Colonne con linea spessa oro superiore */
.services-steps-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding-top: 40px;
    border-top: 3px solid #C5A059;
    margin-bottom: 90px;
}

.step-item .step-number {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #AC8D5D;
    margin-bottom: 20px;
}

.step-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: #2D2D2D;
    margin-bottom: 12px;
}

.step-item p {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #55524C;
}

/* Blocco Scuro Inferiore Dettagli */
.services-features-dark {
    background-color: #2D2D2D;
    padding: 60px 50px;
    margin-top: 40px;
}

.features-dark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
}

.feature-dark-item {
    position: relative;
    padding-left: 25px;
}

/* Icona a rombo color oro creata in CSS puro prima di ogni titolo */
.feature-dark-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: #C5A059;
    transform: rotate(45deg);
}

.feature-dark-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(251, 250, 246, 0.82);
    margin-bottom: 10px;
}

.feature-dark-item p {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(251, 250, 246, 0.60);
}

/* =========== SEZIONE RENDER E 3D ============ */
.render-section {
    background-color: #FBFAF6;
    padding: 120px 0;
    text-align: center;
}

.render-container {
    width: min(1300px, 90%);
    margin: 0 auto;
}

.render-label {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #AC8D5D;
    margin-bottom: 25px;
    font-weight: 600;
}

.render-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 400;
    color: #2D2D2D;
    margin-bottom: 25px;
}

.render-description {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4A4744;
    max-width: 680px;
    margin: 0 auto 70px auto;
}

/* Griglia flessibile a 12 colonne */
.render-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

/* Card Base */
.render-card {
    position: relative;
    overflow: hidden;
    background-color: #E2D9C6;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    text-align: left;
}

.render-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    z-index: 1;
}

.render-card:hover img {
    transform: scale(1.03);
}

/* Titoli interni alle card */
.render-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    color: #2D2D2D;
    position: relative;
    z-index: 2;
    background: rgba(251, 250, 246, 0.75);
    padding: 4px 12px;
    border-radius: 2px;
}

/* Riga Superiore */
.size-16-9 {
    grid-column: span 6;
    height: 440px;
}

.size-4-3 {
    grid-column: span 3;
}

/* Riga Inferiore */
.size-3-4 {
    grid-column: span 3;
    aspect-ratio: 3 / 4;
    margin-top: 4px;
}

.size-16-9-wide {
    grid-column: span 9;
}

/* Bottone Visualizza Render */
.render-action-wrapper {
    grid-column: span 12;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Stile del Bottone "Visualizza tutti" */
.btn-view-all {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2D2D2D;
    text-decoration: none;
    padding: 14px 36px;
    border: 1px solid #2D2D2D;
    background-color: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Effetto Hover elegante */
.btn-view-all:hover {
    background-color: #2D2D2D;
    color: #FBFAF6;
    border-color: #2D2D2D;
}

/* Blocco Realtà Virtuale integrato nella griglia a 12 colonne */
.vr-banner-block {
    grid-column: span 12;
    display: flex;
    background-color: #2D2D2D;
    margin-top: 50px;
    width: 100%;
    min-height: 460px;
    overflow: hidden;
}

/* Lato Testo (Sinistra) */
.vr-text-side {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.vr-text-side .vr-label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #AC8D5D;
    margin-bottom: 20px;
    font-weight: 600;
}

.vr-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    line-height: 1.2;
    color: rgba(251, 250, 246, 0.9);
    font-weight: 400;
    margin-bottom: 20px;
}

.vr-description {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(251, 250, 246, 0.6);
    margin-bottom: 35px;
    max-width: 500px;
}

.vr-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vr-tag {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: rgba(251, 250, 246, 0.75);
    border: 1px solid rgba(251, 250, 246, 0.2);
    padding: 8px 18px;
    border-radius: 30px;
    white-space: nowrap;
}

/* Lato Immagine (Destra) */
.vr-image-side {
    flex: 1;
    position: relative;
    background-color: #E2D9C6;
}

.vr-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== SEZIONE ENERGIA ECOLOGICA ========= */
.energy-section {
    background: #7F5B30;
    padding: 120px 0;
    color: rgba(251, 250, 246, 0.82);
}

.energy-container {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    width: 90%;
}

/* Testo a sinistra */
.energy-text-side {
    flex: 1.1;
}

.energy-label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E6CD9A;
    margin-bottom: 25px;
    font-weight: 500;
}

.energy-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 400;
    color: rgba(251, 250, 246, 0.82);
    margin-bottom: 30px;
}

.energy-description {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(251, 250, 246, 0.70);
    margin-bottom: 35px;
}

/* Elenco puntato con rombi decorativi oro */
.energy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.energy-list li {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: rgba(251, 250, 246, 0.82);
    position: relative;
    padding-left: 25px;
}

.energy-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #E6CD9A;
    font-size: 15px;
    top: 1px;
}

.energy-footer-text {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(251, 250, 246, 0.60);
}

/* Immagine a destra */
.energy-image-side {
    flex: 0 0 500px;
    display: flex;
    justify-content: center;
}

.energy-image-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: rgba(251, 250, 246, 0.05);
    border: 1px solid rgba(251, 250, 246, 0.2);
    overflow: hidden;
}

.energy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========== SEZIONE PRESTAZIONI TECNICHE ============ */
.expertise-zone {
    background-color: #FBFAF6;
    padding: 120px 0;
}

.expertise-wrapper {
    width: min(1300px, 90%);
    margin: 0 auto;
}

.expertise-header {
    max-width: 750px;
    margin-bottom: 60px;
}

.expertise-label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #AC8D5D;
    margin-bottom: 25px;
    font-weight: 600;
}

.expertise-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    line-height: 1.1;
    color: #2D2D2D;
    margin-bottom: 25px;
    font-weight: 400;
}

.expertise-description {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #55524C;
}

/* Griglia a 4 colonne con bordi chiari incrociati */
.features-block-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #E6DDCA;
    border-left: 1px solid #E6DDCA;
    background-color: #FFFFFF;
}

.feature-block-card {
    padding: 40px 30px;
    border-right: 1px solid #E6DDCA;
    border-bottom: 1px solid #E6DDCA;
    transition: background-color 0.3s ease;
}

.feature-block-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 15px;
}

.feature-block-card p {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #55524C;
}

.feature-block-card:hover {
    background-color: #FBFAF6;
}

/* =========== SEZIONE PRIMA E DOPO ============ */
.before-after-section {
    background-color: #201F1A;
    /* Sfondi molto scuri del footer e sezioni a tema */
    padding: 120px 0;
    color: rgba(251, 250, 246, 0.82);
}

.ba-container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

/* Intestazione centrale */
.ba-header {
    text-align: center;
    margin-bottom: 80px;
}

.ba-label {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #AC8D5D;
    margin-bottom: 25px;
}

.ba-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 400;
    color: rgba(251, 250, 246, 0.82);
    margin-bottom: 20px;
}

.ba-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(251, 250, 246, 0.60);
    max-width: 600px;
    margin: 0 auto;
}

/* Lista progetti verticale */
.ba-projects-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    /* Spazio tra un blocco e l'altro */
}

.ba-project-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Contenitore Immagini Diviso a Metà (50% e 50%) */
.ba-images-split {
    display: flex;
    width: 100%;
    height: 480px;
}

.ba-side {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #E2D9C6;
}

/* Texture diagonale di fallback se non ci sono le immagini (come nei tuoi screen) */
.ba-side::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ba-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Badge Prima / Dopo */
.badge-ba {
    position: absolute;
    top: 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    z-index: 3;
}

.badge-before {
    left: 20px;
    background-color: #2D2D2D;
    /* Sfondo scuro principale */
    color: rgba(251, 250, 246, 0.82);
}

.badge-after {
    left: 20px;
    background-color: #D4B06E;
    /* Hover dei pulsanti ed elementi oro chiaro */
    color: #2D2D2D;
}

/* Barra dei dettagli inferiore */
.ba-details-bar {
    background-color: #2D2D2D;
    /* Sfondo scuro per contrastare con il fondo sezione */
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ba-info-left h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: rgba(251, 250, 246, 0.82);
    margin-bottom: 6px;
}

.ba-info-left p {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: rgba(251, 250, 246, 0.60);
}

.ba-tag-type {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #E6CD9A;
    /* Accenti e dettagli su sfondi bronzo/scuri */
}

/* =========== SEZIONE CONTATTI ============ */
.contacts-section {
    background-color: #FBFAF6;
    padding: 120px 0 100px 0;
}

.contacts-container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

/* Layout a due colonne superiore */
.contacts-main-row {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 70px;
}

/* Colonna di sinistra (Testi e Dati) */
.contacts-info-side {
    flex: 1;
}

.contacts-label {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #AC8D5D;
    margin-bottom: 25px;
    font-weight: 600;
}

.contacts-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    line-height: 1.2;
    font-weight: 400;
    color: #2D2D2D;
    margin-bottom: 25px;
}

.contacts-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #55524C;
    margin-bottom: 50px;
    max-width: 480px;
}

/* Lista Dati Contatto */
.contacts-data-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.data-item span {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #AC8D5D;
    margin-bottom: 5px;
}

.data-item a,
.data-item p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #2D2D2D;
    text-decoration: none;
    margin: 0;
}

.data-item a:hover {
    color: #C5A059;
}

/* Colonna di destra (Mappa) */
.contacts-map-side {
    flex: 1;
    width: 100%;
}

.map-wrapper {
    width: 100%;
    height: 520px;
    border: 1px solid #2d2d2d;
    background: #2d2d2d;
    padding: 1px;
}

/* Riga inferiore con i pulsanti d'azione centrati */
.contacts-action-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    border-top: 1px solid #E6DDCA;
    padding-top: 50px;
}

/* Stile comune dei due bottoni di azione rapida */
.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Pulsante Chiamata (Oro pieno) */
.btn-call {
    background-color: #C5A059;
    color: #2D2D2D;
}

.btn-call:hover {
    background-color: #D4B06E;
}

/* Pulsante WhatsApp (Bordo scuro, pulito ed elegante) */
.btn-whatsapp {
    border: 1px solid #2D2D2D;
    color: #2D2D2D;
    background-color: transparent;
}

.btn-whatsapp:hover {
    background-color: #2D2D2D;
    color: #FBFAF6;
}

/* ================ FOOTER ================ */
.site-footer {
    background-color: #201F1A;
    /* Sfondo scuro unito alla sezione precedente */
    padding: 90px 0 40px 0;
    color: rgba(251, 250, 246, 0.82);
    border-top: 1px solid rgba(230, 221, 202, 0.08);
}

.footer-container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

/* Distribuzione delle due macro-colonne */
.footer-main-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 60px;
}

/* Stili Colonna Sinistra (Brand) */
.footer-brand-col {
    max-width: 360px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: rgba(251, 250, 246, 0.9);
    margin-bottom: 5px;
}

.footer-tagline {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #AC8D5D;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer-brand-col .footer-description {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(251, 250, 246, 0.50);
}

/* Stili Colonna Destra (Contatti & Info accorpati) */
.footer-contacts-col {
    max-width: 400px;
    text-align: right;
}

.footer-label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(251, 250, 246, 0.82);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(251, 250, 246, 0.50);
    margin-bottom: 6px;
}

.footer-links-list a {
    color: rgba(251, 250, 246, 0.50);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links-list a:hover {
    color: #C5A059;
}

/* Dettagli tecnici e indirizzo dello studio */
.footer-address {
    color: rgba(251, 250, 246, 0.65) !important;
    margin-top: 15px;
}

.footer-meta {
    font-size: 12px !important;
    opacity: 0.8;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-block;
    margin-left: 12px;
    font-size: 16px;
    color: #ffffff;
    transition: 0.3s ease;
    
    text-decoration: none;
}

.footer-social a:hover {
    color: #C5A059;
    transform: translateY(-2px);
}

/* Riga Inferiore (Copyright e Link Legali) */
.footer-bottom-row {
    border-top: 1px solid rgba(230, 221, 202, 0.08);
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: rgba(251, 250, 246, 0.40);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal a {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: rgba(251, 250, 246, 0.40);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #C5A059;
}

.footer-legal .separator {
    color: rgba(251, 250, 246, 0.20);
}