:root {
    --primary: #2c3e50;
    --secondary: #8b4513;
    --accent: #c9a227;
    --bg-light: #faf8f5;
    --bg-dark: #1a1a2e;
    --text-dark: #2d2d2d;
    --text-light: #f5f5f5;
    --border: #e0d5c7;
    --shadow: rgba(44, 62, 80, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

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

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

.ad-disclosure {
    background-color: var(--primary);
    color: var(--text-light);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

header {
    background-color: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--text-dark);
    font-size: 15px;
    position: relative;
    padding: 4px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.hero-editorial {
    padding: 80px 0 60px;
    text-align: center;
    background-color: #fff;
}

.hero-editorial h1 {
    font-size: 48px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.3;
}

.hero-editorial .lead {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-image-container {
    background-color: var(--border);
    margin: 40px 0;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.editorial-section {
    padding: 60px 0;
}

.editorial-section h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 24px;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
}

.editorial-section p {
    margin-bottom: 20px;
    font-size: 17px;
}

.inline-image {
    margin: 40px 0;
    background-color: var(--border);
}

.inline-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.inline-image figcaption {
    padding: 12px 0;
    font-size: 14px;
    color: #777;
    font-style: italic;
    text-align: center;
}

.cta-inline {
    background-color: var(--bg-dark);
    padding: 48px 40px;
    margin: 50px 0;
    text-align: center;
}

.cta-inline h3 {
    color: var(--text-light);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 16px;
}

.cta-inline p {
    color: #aaa;
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-dark);
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #d4ad2f;
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary);
    padding: 12px 32px;
    font-size: 15px;
    border: 2px solid var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: #fff;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #fff;
    border: 1px solid var(--border);
    padding: 0;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 30px var(--shadow);
}

.service-card-image {
    background-color: var(--border);
    height: 200px;
    overflow: hidden;
}

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

.service-card-content {
    padding: 24px;
}

.service-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 16px;
}

.service-price span {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.quote-block {
    background-color: var(--primary);
    padding: 60px 40px;
    margin: 60px 0;
    position: relative;
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    color: rgba(255,255,255,0.1);
    font-family: Georgia, serif;
}

.quote-block blockquote {
    color: var(--text-light);
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.quote-block cite {
    display: block;
    color: var(--accent);
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
}

.alternating-section {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

.alternating-section.reverse {
    flex-direction: row-reverse;
}

.alternating-content {
    flex: 1;
}

.alternating-image {
    flex: 1;
    background-color: var(--border);
    min-height: 350px;
}

.alternating-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.contact-info {
    background-color: #fff;
    padding: 40px;
    border: 1px solid var(--border);
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-item strong {
    min-width: 140px;
    color: var(--secondary);
}

.form-container {
    background-color: #fff;
    padding: 48px;
    border: 1px solid var(--border);
    margin: 40px 0;
}

.form-container h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-container .form-intro {
    color: #666;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid var(--border);
    background-color: var(--bg-light);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #aaa;
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #777;
}

.disclaimer {
    background-color: rgba(0,0,0,0.2);
    padding: 24px;
    margin-top: 40px;
    font-size: 12px;
    color: #888;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--accent);
    color: var(--text-dark);
}

.cookie-reject {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.thanks-container {
    text-align: center;
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-container h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    color: #666;
    max-width: 500px;
    margin-bottom: 32px;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.legal-content h2 {
    font-size: 22px;
    color: var(--primary);
    margin: 32px 0 16px;
}

.legal-content p {
    margin-bottom: 16px;
    font-size: 16px;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.about-hero {
    background-color: var(--primary);
    padding: 80px 0;
    text-align: center;
    color: var(--text-light);
}

.about-hero h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.team-section {
    padding: 80px 0;
    background-color: #fff;
}

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
}

.team-member-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background-color: var(--border);
}

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

.team-member h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-member span {
    font-size: 14px;
    color: var(--secondary);
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 99;
}

.sticky-cta .btn-primary {
    box-shadow: 0 4px 20px var(--shadow);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        display: none;
    }

    nav.active {
        display: flex;
    }

    .hero-editorial h1 {
        font-size: 32px;
    }

    .hero-image-container img {
        height: 300px;
    }

    .alternating-section {
        flex-direction: column;
    }

    .alternating-section.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .footer-grid {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        display: none;
    }

    .form-container {
        padding: 24px;
    }
}
