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

:root {
    --primary: #8b4513;
    --secondary: #d2691e;
    --accent: #f4a460;
    --dark: #2c1810;
    --light: #faf8f5;
    --cream: #fff8f0;
    --text: #3d2914;
    --muted: #7a6555;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

header {
    background: var(--cream);
    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: 18px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.5px;
}

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

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

nav a {
    color: var(--text);
    font-size: 0.95rem;
    position: relative;
}

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

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

.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: 80px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--cream) 0%, var(--light) 100%);
}

.hero-editorial h1 {
    font-size: 3rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto 40px;
}

.hero-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 24, 16, 0.15);
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

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

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

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

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

.section {
    padding: 70px 0;
}

.section-alt {
    background: var(--cream);
}

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

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

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

.article-block {
    margin-bottom: 48px;
}

.article-block h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-block h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 16px;
}

.article-block p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.inline-image {
    margin: 40px -60px;
    border-radius: 6px;
    overflow: hidden;
}

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

.inline-image.small {
    margin: 32px 0;
}

.inline-image.small img {
    height: 240px;
}

.pullquote {
    border-left: 4px solid var(--secondary);
    padding: 24px 32px;
    margin: 40px 0;
    background: var(--cream);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark);
}

.cta-inline {
    background: linear-gradient(135deg, var(--cream) 0%, #fff5eb 100%);
    padding: 40px;
    margin: 48px 0;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.cta-inline h3 {
    margin-bottom: 12px;
}

.cta-inline p {
    margin-bottom: 20px;
    color: var(--muted);
}

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

.service-item {
    display: flex;
    gap: 32px;
    padding: 32px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(44, 24, 16, 0.12);
}

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

.service-image {
    flex: 0 0 200px;
    height: 160px;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.service-content p {
    color: var(--muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.service-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--muted);
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.06);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.4;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    padding-left: 40px;
    margin-bottom: 16px;
}

.testimonial-author {
    padding-left: 40px;
    font-weight: 600;
    color: var(--dark);
}

.testimonial-author span {
    font-weight: 400;
    color: var(--muted);
}

.form-section {
    background: var(--dark);
    padding: 80px 0;
}

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

.form-container h2 {
    text-align: center;
    color: var(--cream);
    margin-bottom: 12px;
    font-size: 2rem;
    font-weight: 400;
}

.form-container .lead {
    text-align: center;
    color: rgba(255, 248, 240, 0.7);
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    color: var(--cream);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 248, 240, 0.1);
    border-radius: 4px;
    background: rgba(255, 248, 240, 0.05);
    color: var(--cream);
    font-size: 1rem;
    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(--secondary);
}

.form-group select option {
    background: var(--dark);
    color: var(--cream);
}

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

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

.form-submit .btn {
    min-width: 200px;
}

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

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

.sticky-cta .btn {
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.3);
    padding: 16px 28px;
}

footer {
    background: var(--dark);
    color: rgba(255, 248, 240, 0.7);
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    color: var(--cream);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

.footer-col a {
    color: rgba(255, 248, 240, 0.7);
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 248, 240, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--cream);
    padding: 20px 24px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.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-inner p {
    flex: 1;
    font-size: 0.95rem;
}

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

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

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

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 12px;
}

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

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

.content-page h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 40px 0 16px;
    font-weight: 600;
}

.content-page h2:first-child {
    margin-top: 0;
}

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

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-details h4 {
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-details p {
    color: var(--muted);
    margin: 0;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 16px;
    font-weight: 400;
}

.thanks-container p {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 480px;
    margin-bottom: 32px;
}

.about-story {
    display: flex;
    gap: 48px;
    align-items: center;
    margin: 48px 0;
}

.about-story-image {
    flex: 0 0 280px;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-story-content h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 40px 0;
}

.value-card {
    flex: 1;
    min-width: 240px;
    padding: 32px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(44, 24, 16, 0.06);
}

.value-card h4 {
    color: var(--dark);
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.value-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

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

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-top: 1px solid rgba(139, 69, 19, 0.1);
    }

    nav.active {
        display: flex;
    }

    .hero-editorial h1 {
        font-size: 2rem;
    }

    .hero-editorial .lead {
        font-size: 1.1rem;
    }

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

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

    .service-image {
        flex: none;
        width: 100%;
        height: 180px;
    }

    .about-story {
        flex-direction: column;
    }

    .about-story-image {
        flex: none;
        width: 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

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

    .sticky-cta .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 14px 16px;
    }

    .section {
        padding: 50px 0;
    }

    .article-block h2 {
        font-size: 1.6rem;
    }

    .service-item {
        padding: 20px;
    }

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