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

:root {
    --primary: #c45a3b;
    --primary-dark: #a04830;
    --secondary: #2d4a3e;
    --accent: #e8a87c;
    --text-dark: #1a1a1a;
    --text-light: #f5f0eb;
    --bg-light: #faf8f5;
    --bg-cream: #f5ebe0;
    --bg-dark: #2d2926;
    --border: #d4c8bc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-light);
}

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

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

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

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

.narrow-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--bg-dark);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

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

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

.hero-editorial {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23c45a3b" stroke-width="0.3" opacity="0.15"/></svg>');
    background-size: 150px;
    transform: rotate(15deg);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-editorial h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 25px;
    max-width: 650px;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: var(--secondary);
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 90, 59, 0.3);
}

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

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

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

.btn-light:hover {
    background: var(--bg-cream);
    color: var(--primary-dark);
}

.story-section {
    padding: 90px 0;
}

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

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

.story-section.dark-bg h2,
.story-section.dark-bg h3 {
    color: var(--text-light);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 15px;
}

.story-section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.25;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
}

.story-text:last-of-type {
    margin-bottom: 0;
}

.inline-image {
    margin: 50px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

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

.inline-image.wide {
    margin-left: -100px;
    margin-right: -100px;
}

.inline-cta {
    background: var(--secondary);
    color: var(--text-light);
    padding: 35px 40px;
    border-radius: 12px;
    margin: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.inline-cta h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.inline-cta p {
    opacity: 0.9;
    font-size: 1rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.service-card-img {
    height: 220px;
    overflow: hidden;
}

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

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

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

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

.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

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

.price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
}

.service-link {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-link::after {
    content: '→';
    transition: transform 0.3s;
}

.service-link:hover::after {
    transform: translateX(4px);
}

.testimonial-block {
    background: white;
    border-left: 4px solid var(--primary);
    padding: 35px 40px;
    margin: 50px 0;
    border-radius: 0 12px 12px 0;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #666;
}

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

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

.form-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.form-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1rem;
}

.form-benefits li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.form-container {
    flex: 1;
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: var(--bg-light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(196, 90, 59, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 70px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col:first-child {
    flex: 1.5;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-col ul a {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 90;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta .btn {
    box-shadow: 0 10px 40px rgba(196, 90, 59, 0.4);
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}

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

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

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

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

.page-header {
    background: var(--bg-dark);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 1.15rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

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

.breadcrumb span {
    color: var(--text-light);
    opacity: 0.6;
}

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

.content-page h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.content-page h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

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

.content-page ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--bg-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: var(--bg-cream);
    border-radius: 16px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

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

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 3rem;
}

.thanks-content h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.8;
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-intro-text {
    flex: 1;
}

.about-intro-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.about-intro-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

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

.team-grid {
    display: flex;
    gap: 35px;
    justify-content: center;
    margin-top: 50px;
}

.team-member {
    flex: 1;
    max-width: 280px;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--bg-cream);
    margin: 0 auto 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.team-member h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-member p {
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        display: none;
    }

    nav.active {
        display: flex;
    }

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

    .form-wrapper {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 45%;
    }

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

    .values-grid {
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 45%;
    }

    .team-grid {
        flex-wrap: wrap;
    }

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

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

@media (max-width: 768px) {
    .service-card {
        flex: 1 1 100%;
    }

    .stats-row {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 45%;
    }

    .footer-col {
        flex: 1 1 100%;
    }

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

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

    .value-item {
        flex: 1 1 100%;
    }

    .inline-cta {
        flex-direction: column;
        text-align: center;
    }

    .form-container {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .hero-editorial {
        padding: 60px 0 50px;
    }

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

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

    .story-section h2 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .stats-row {
        flex-direction: column;
    }

    .stat-item {
        flex: 1 1 100%;
    }
}
