@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

:root {
    --primary: #8B4513;
    --primary-dark: #5D2E0C;
    --accent: #D4A574;
    --accent-light: #F5E6D3;
    --text: #2C1810;
    --text-light: #6B4423;
    --bg: #FDF8F3;
    --bg-warm: #F9F1E8;
    --white: #FFFFFF;
    --shadow: rgba(139, 69, 19, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

.editorial-column {
    max-width: 640px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-light);
    font-style: italic;
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.highlight {
    background: linear-gradient(120deg, var(--accent-light) 0%, var(--accent-light) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 88%;
    padding: 0 4px;
    font-weight: 600;
}

.cta-block {
    background: var(--bg-warm);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
    text-align: center;
}

.cta-block p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.2);
}

.image-block {
    margin: 2.5rem 0;
    position: relative;
}

.image-block img {
    width: 100%;
    box-shadow: 0 8px 30px var(--shadow);
}

.image-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    margin-top: 0.75rem;
}

.quote-block {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
}

.quote-block::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    line-height: 1;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-dark);
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.quote-author {
    font-size: 0.95rem;
    color: var(--text-light);
    padding-left: 2rem;
}

.review-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 20px var(--shadow);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    margin-right: 1rem;
}

.review-meta h4 {
    font-size: 1rem;
    margin: 0;
}

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

.stars {
    color: #FFC107;
    margin-bottom: 0.5rem;
}

.benefit-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefit-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--accent-light);
}

.benefit-list li:last-child {
    border-bottom: none;
}

.benefit-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.spec-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow);
}

.spec-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.spec-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.spec-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.sticky-cta .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
}

.sticky-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.main-content {
    padding-bottom: 100px;
}

.site-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: var(--accent);
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: var(--white);
}

.legal-info {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--accent);
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--accent);
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-cta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .sticky-text {
        font-size: 0.8rem;
    }
}
