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

:root {
    --primary: #8B4513;
    --secondary: #D2691E;
    --accent: #F4A460;
    --dark: #2C1810;
    --light: #FFF8F0;
    --text: #3D2914;
    --muted: #7A6B5E;
    --white: #FFFFFF;
    --shadow: rgba(44, 24, 16, 0.12);
}

html {
    scroll-behavior: smooth;
}

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

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

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

header {
    background: var(--white);
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Georgia', serif;
    font-size: 26px;
    font-weight: normal;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
}

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

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

nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

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

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

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

.hero-editorial {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.hero-editorial h1 {
    font-size: 52px;
    font-weight: normal;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-editorial .lead {
    font-size: 22px;
    color: var(--muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

.image-caption {
    font-size: 14px;
    color: var(--muted);
    margin-top: 12px;
    font-style: italic;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 36px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

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

.btn-secondary {
    display: inline-block;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    background: transparent;
}

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

.btn-inline {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: normal;
    transition: color 0.3s ease;
}

.btn-inline:hover {
    color: var(--dark);
}

.section-narrative {
    padding: 80px 0;
}

.section-narrative h2 {
    font-size: 36px;
    font-weight: normal;
    color: var(--dark);
    margin-bottom: 32px;
    line-height: 1.3;
}

.section-narrative p {
    margin-bottom: 24px;
    color: var(--text);
}

.section-narrative p:last-of-type {
    margin-bottom: 0;
}

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

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

.inline-image.float-right {
    float: right;
    width: 45%;
    margin: 8px 0 24px 40px;
}

.inline-image.float-left {
    float: left;
    width: 45%;
    margin: 8px 40px 24px 0;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.section-tinted {
    background: var(--white);
    border-top: 1px solid rgba(139, 69, 19, 0.08);
    border-bottom: 1px solid rgba(139, 69, 19, 0.08);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-dark h2, .section-dark h3 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.85);
}

.drop-cap::first-letter {
    float: left;
    font-size: 68px;
    line-height: 1;
    font-weight: normal;
    margin-right: 12px;
    margin-top: 8px;
    color: var(--primary);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    flex: 1 1 340px;
    background: var(--white);
    padding: 36px;
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 22px;
    font-weight: normal;
    color: var(--dark);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 16px;
}

.service-price {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-price span {
    font-size: 16px;
    color: var(--muted);
}

.quote-block {
    border-left: 3px solid var(--accent);
    padding-left: 32px;
    margin: 48px 0;
    font-style: italic;
    font-size: 24px;
    color: var(--muted);
    line-height: 1.5;
}

.quote-author {
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: var(--text);
}

.testimonial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #4A2C17 100%);
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 320px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-name {
    color: var(--accent);
    font-size: 15px;
    letter-spacing: 1px;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 0;
    text-align: center;
}

.stat-item {
    flex: 1 1 180px;
}

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

.stat-label {
    font-size: 15px;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-section {
    padding: 100px 0;
    text-align: center;
    background: var(--primary);
    color: var(--white);
}

.cta-section h2 {
    font-size: 40px;
    font-weight: normal;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 36px;
    opacity: 0.9;
}

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

.cta-section .btn-primary:hover {
    background: var(--light);
}

.form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    background: var(--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(--primary);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 16px;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: var(--dark);
}

.contact-info {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(139, 69, 19, 0.1);
}

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

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-text {
    font-size: 16px;
    color: var(--text);
}

.contact-text strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
}

footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

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

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-logo {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 16px;
}

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

.footer-desc {
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    font-weight: normal;
    color: var(--dark);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: var(--muted);
}

.content-page {
    padding: 60px 0 100px;
}

.content-page h2 {
    font-size: 28px;
    font-weight: normal;
    color: var(--dark);
    margin: 48px 0 20px;
}

.content-page h3 {
    font-size: 22px;
    font-weight: normal;
    color: var(--dark);
    margin: 36px 0 16px;
}

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

.content-page ul, .content-page ol {
    margin: 20px 0 20px 32px;
}

.content-page li {
    margin-bottom: 12px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 48px 0;
}

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

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

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

.team-member p {
    font-size: 15px;
    color: var(--muted);
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 28px;
    text-decoration: none;
    font-size: 15px;
    z-index: 90;
    box-shadow: 0 8px 30px var(--shadow);
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: var(--dark);
    transform: translateY(-3px);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 15px;
}

.cookie-text a {
    color: var(--accent);
}

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

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

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

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

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

.thanks-content p {
    font-size: 20px;
    color: var(--muted);
    margin-bottom: 40px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 48px 0;
}

.gallery-item {
    flex: 1 1 300px;
    height: 280px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.features-list {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--dark);
    font-size: 24px;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: normal;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 16px;
    color: var(--muted);
    margin: 0;
}

.process-steps {
    margin: 60px 0;
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

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

.step-content p {
    color: var(--muted);
    margin: 0;
}

.divider {
    width: 80px;
    height: 2px;
    background: var(--accent);
    margin: 48px 0;
}

.section-overlap {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.card-elevated {
    background: var(--white);
    padding: 48px;
    box-shadow: 0 20px 60px var(--shadow);
}

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

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-48 {
    margin-bottom: 48px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-48 {
    margin-top: 48px;
}

@media (max-width: 900px) {
    .hero-editorial h1 {
        font-size: 38px;
    }

    .inline-image.float-right,
    .inline-image.float-left {
        float: none;
        width: 100%;
        margin: 32px 0;
    }

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

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

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-editorial {
        padding: 60px 0 50px;
    }

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

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

    .section-narrative {
        padding: 50px 0;
    }

    .section-narrative h2 {
        font-size: 28px;
    }

    .quote-block {
        font-size: 20px;
        padding-left: 20px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

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

    .footer-grid {
        gap: 40px;
    }

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

    .page-header h1 {
        font-size: 32px;
    }

    .sticky-cta {
        bottom: 80px;
        right: 16px;
        padding: 14px 20px;
        font-size: 14px;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .editorial-container {
        padding: 0 16px;
    }

    .wide-container {
        padding: 0 16px;
    }

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

    .btn-primary, .btn-secondary {
        padding: 14px 24px;
        font-size: 15px;
    }

    .stat-number {
        font-size: 36px;
    }

    .service-price {
        font-size: 24px;
    }
}
