/* ===================================
   Roma Caminetti Pro - Main Stylesheet
   Earthy terracotta + stone palette
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Raleway:wght@400;500;600;700&display=swap');

:root {
    --primary: #2c1810;
    --accent: #c0392b;
    --gold: #d4a853;
    --stone: #8b7355;
    --cream: #faf6f0;
    --light: #f4ede3;
    --text: #3a2a1e;
    --text-light: #7a6a5e;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(44, 24, 16, 0.14);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
}

/* HEADER */
.site-header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-wrap svg {
    width: 50px;
    height: 50px;
}

.logo-text {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.1;
}

.logo-text span {
    color: var(--gold);
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: color 0.2s;
}

.header-phone:hover {
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
}

/* HERO */
.hero {
    background: linear-gradient(150deg, var(--primary) 0%, #4a1c0e 40%, #2c1810 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--cream));
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 4.5vw, 3.3rem);
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    color: rgba(250, 246, 240, 0.78);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(192, 57, 43, 0.45);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(192, 57, 43, 0.55);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    padding: 0.9rem 2rem;
    border: 2px solid rgba(212, 168, 83, 0.5);
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--gold);
}

.stat-label {
    color: rgba(250, 246, 240, 0.6);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image-wrap svg {
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* SECTIONS */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 0.75rem 0 1.5rem;
}

/* SERVICES */
.services-section {
    background: var(--light);
}

.service-card {
    background: var(--cream);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    transition: transform 0.25s;
    border-bottom: 3px solid var(--gold);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 1.2rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.7rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.88rem;
}

/* BENEFITS */
.benefits-section {
    background: var(--primary);
    color: var(--cream);
}

.benefits-section .section-title {
    color: var(--cream);
}

.benefits-section .section-subtitle {
    color: rgba(250, 246, 240, 0.65);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    height: 100%;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.benefit-item p {
    font-size: 0.87rem;
    color: rgba(250, 246, 240, 0.7);
}

/* TESTIMONIALS */
.testimonials-section {
    background: var(--cream);
}

.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    border-top: 4px solid var(--gold);
    box-shadow: 0 4px 16px rgba(44, 24, 16, 0.08);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.25;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 0.9rem;
}

.testimonial-card p {
    color: var(--text);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.reviewer-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.reviewer-location {
    color: var(--text-light);
    font-size: 0.78rem;
}

/* CONTACT */
.contact-section {
    background: var(--light);
}

.contact-form-wrap {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow);
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.form-control,
.form-select {
    border: 2px solid #ddd5c8;
    border-radius: 4px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    transition: border-color 0.2s;
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent), #922b21);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

.contact-info-box {
    background: var(--primary);
    border-radius: 12px;
    padding: 3rem 2rem;
    color: var(--cream);
    height: 100%;
}

.contact-info-box h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-detail h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(250, 246, 240, 0.5);
    margin-bottom: 0.2rem;
}

.contact-detail p {
    font-size: 0.92rem;
}

.contact-detail a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* FOOTER */
.site-footer {
    background: #1a0c08;
    color: rgba(250, 246, 240, 0.55);
    padding: 2rem 0 1rem;
    font-size: 0.82rem;
}

.footer-links a {
    color: rgba(250, 246, 240, 0.45);
    text-decoration: none;
    margin: 0 0.75rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

/* INNER PAGES */
.page-hero {
    background: linear-gradient(135deg, var(--primary), #4a1c0e);
    padding: 6rem 0 4rem;
    text-align: center;
    color: var(--cream);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 2.5rem;
}

.page-hero p {
    color: rgba(250, 246, 240, 0.75);
}

.page-content {
    padding: 4rem 0;
}

.page-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin: 2rem 0 0.75rem;
}

.page-content p,
.page-content li {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.checkmark-circle {
    width: 90px;
    height: 90px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.8rem;
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .hamburger {
        display: block;
    }

    .site-header {
        position: relative;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 4rem 0 5rem;
    }

    .hero-image-wrap {
        display: none;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }

    .contact-info-box {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
}