:root {
    --primary: #2d4a3e;
    --primary-dark: #1e3329;
    --accent: #c9a227;
    --accent-hover: #b8922a;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --bg: #faf9f7;
    --bg-alt: #f0ede8;
    --white: #ffffff;
    --border: #e0dcd4;
    --shadow: rgba(45, 74, 62, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* Navigation */
.nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: relative;
    z-index: 100;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Editorial */
.hero-editorial {
    padding: 80px 0 60px;
    text-align: center;
}

.hero-editorial .overline {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 20px;
}

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

.hero-editorial .lead {
    font-size: 22px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-image {
    margin: 40px 0;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

.hero-image figcaption {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

/* Article Content */
.article-content {
    padding: 60px 0;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content h2 {
    font-size: 32px;
    font-weight: normal;
    margin: 48px 0 24px;
    color: var(--primary-dark);
}

.article-content h3 {
    font-size: 24px;
    font-weight: normal;
    margin: 36px 0 18px;
    color: var(--primary);
}

.pullquote {
    font-size: 28px;
    font-style: italic;
    color: var(--primary);
    border-left: 3px solid var(--accent);
    padding-left: 30px;
    margin: 48px 0;
    line-height: 1.5;
}

.inline-image {
    margin: 48px -60px;
}

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

.inline-image figcaption {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 12px;
    padding: 0 60px;
}

/* CTA Inline */
.cta-inline {
    background: var(--bg-alt);
    padding: 40px;
    margin: 48px 0;
    text-align: center;
    border-radius: 4px;
}

.cta-inline p {
    margin-bottom: 20px;
    font-size: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--accent-hover);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.services-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.services-section .subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: flex;
    gap: 40px;
    padding: 40px;
    background: var(--bg);
    border-radius: 4px;
    align-items: flex-start;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 280px;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    color: var(--accent);
    font-weight: bold;
    margin-bottom: 16px;
}

.service-price span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: normal;
}

/* Testimonial */
.testimonial-section {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}

.testimonial-section .container {
    text-align: center;
}

.testimonial-text {
    font-size: 26px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
}

.testimonial-author {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--bg-alt);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 60px;
    color: var(--primary-dark);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.step-content h3 {
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 8px;
    color: var(--primary);
}

.step-content p {
    color: var(--text-light);
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.form-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.form-section .subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 48px;
}

.contact-form {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 4px;
    box-shadow: 0 4px 20px var(--shadow);
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text);
}

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

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

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

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.form-submit .btn {
    width: 100%;
}

/* About Page */
.about-hero {
    padding: 100px 0 60px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

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

.about-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.about-content h2 {
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.about-content p {
    margin-bottom: 20px;
}

.team-section {
    padding: 60px 0;
    background: var(--bg-alt);
}

.team-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 48px;
    color: var(--primary-dark);
}

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

.team-member {
    text-align: center;
    max-width: 240px;
}

.team-member img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

.team-member h3 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 4px;
    color: var(--primary);
}

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

/* Contact Page */
.contact-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

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

.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 280px;
}

.contact-details h2 {
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text);
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    min-width: 280px;
    min-height: 300px;
    background: var(--bg-alt);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.thanks-content {
    max-width: 560px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.thanks-content h1 {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Legal Pages */
.legal-hero {
    padding: 80px 0 40px;
    background: var(--bg-alt);
    text-align: center;
}

.legal-hero h1 {
    font-size: 36px;
    font-weight: normal;
    color: var(--primary-dark);
}

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

.legal-content h2 {
    font-size: 24px;
    font-weight: normal;
    margin: 36px 0 16px;
    color: var(--primary);
}

.legal-content h3 {
    font-size: 20px;
    font-weight: normal;
    margin: 28px 0 12px;
    color: var(--primary-dark);
}

.legal-content p,
.legal-content li {
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-col h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col p,
.footer-col a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: block;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 20px var(--shadow);
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: var(--text-light);
}

.cookie-text a {
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 13px;
    border: none;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-reject {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-light);
}

.cookie-reject:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 99;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta .btn {
    box-shadow: 0 4px 16px rgba(45, 74, 62, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

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

    .hero-editorial .lead {
        font-size: 18px;
    }

    .pullquote {
        font-size: 22px;
        margin-left: 0;
        margin-right: 0;
    }

    .inline-image {
        margin-left: 0;
        margin-right: 0;
    }

    .inline-image figcaption {
        padding: 0;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .stats-grid {
        gap: 40px;
    }

    .contact-form {
        padding: 32px 24px;
    }

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

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

    .sticky-cta {
        right: 16px;
        bottom: 80px;
    }

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