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

:root {
    --primary: #8b5a3c;
    --primary-dark: #6d4730;
    --secondary: #e8d5c4;
    --accent: #c9a87c;
    --dark: #2d2a26;
    --light: #faf8f5;
    --gray: #6b6560;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--light);
}

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

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

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

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

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

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

nav {
    display: flex;
    align-items: center;
}

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

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Editorial */
.hero-editorial {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
    padding: 100px 20px 80px;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-editorial .subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.hero-image img {
    width: 100%;
    display: block;
}

/* Editorial Content */
.editorial-section {
    padding: 80px 20px;
}

.editorial-section.alt-bg {
    background: var(--white);
}

.editorial-section h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 24px;
    text-align: center;
}

.editorial-section h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 40px 0 16px;
}

.editorial-text {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 24px;
}

.editorial-text:first-of-type::first-letter {
    font-size: 3.5rem;
    float: left;
    line-height: 1;
    margin: 0 12px 0 0;
    color: var(--primary);
    font-weight: 700;
}

/* Inline Image */
.inline-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    display: block;
}

.inline-image figcaption {
    font-size: 0.9rem;
    color: var(--gray);
    padding: 12px 0;
    text-align: center;
    font-style: italic;
}

/* Pull Quote */
.pull-quote {
    border-left: 4px solid var(--accent);
    padding: 24px 32px;
    margin: 40px 0;
    background: var(--white);
    font-size: 1.3rem;
    color: var(--dark);
    font-style: italic;
}

/* Service Cards Editorial */
.services-editorial {
    padding: 100px 20px;
    background: var(--white);
}

.services-editorial h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.services-intro {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
}

.service-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-image {
    flex: 0 0 300px;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
}

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

.service-content p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.7;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

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

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

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

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

/* Inline CTA */
.inline-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, #f5ebe0 100%);
    padding: 48px;
    border-radius: 12px;
    text-align: center;
    margin: 60px 0;
}

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

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

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
    background: var(--secondary);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
    color: var(--dark);
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    flex: 1 1 300px;
    max-width: 320px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
}

.author-info strong {
    display: block;
    color: var(--dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 20px;
    background: var(--light);
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.contact-intro {
    text-align: center;
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto 48px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.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;
}

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

/* Features List */
.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 40px 0;
}

.feature-item {
    flex: 1 1 280px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

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

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--gray);
}

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

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

.about-story {
    padding: 80px 20px;
}

.timeline {
    max-width: 700px;
    margin: 60px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary);
}

.timeline-item {
    padding-left: 60px;
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 4px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--secondary);
}

.timeline-year {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.timeline-item h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.timeline-item p {
    color: var(--gray);
}

/* Services Page */
.services-hero {
    background: var(--secondary);
    padding: 80px 20px;
    text-align: center;
}

.services-hero h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.services-hero p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex: 1 1 350px;
    max-width: 380px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card-image {
    height: 200px;
    overflow: hidden;
}

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

.service-card-body {
    padding: 28px;
}

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

.service-card-body p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card-price {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.service-card-price small {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 400;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
    padding: 80px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.contact-hero p {
    color: var(--gray);
    font-size: 1.1rem;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-info h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 24px;
}

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

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

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

.contact-item-text h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-item-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

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

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

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

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

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

.thanks-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* Legal Pages */
.legal-hero {
    background: var(--dark);
    padding: 60px 20px;
    text-align: center;
    color: var(--white);
}

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

.legal-content {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: var(--dark);
    margin: 40px 0 16px;
}

.legal-content p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    color: var(--gray);
    margin: 16px 0 16px 24px;
}

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

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

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links {
    flex: 1 1 150px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

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

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

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    border: none;
    transition: all 0.3s;
}

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

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    box-shadow: 0 6px 30px rgba(139, 90, 60, 0.4);
    border-radius: 50px;
    padding: 16px 28px;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 100px 40px;
}

.nav-mobile.show {
    display: block;
}

.nav-mobile ul {
    list-style: none;
}

.nav-mobile ul li {
    margin-bottom: 24px;
}

.nav-mobile ul li a {
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .service-item {
        flex-direction: column !important;
    }

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

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

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

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-editorial {
        padding: 60px 20px;
    }

    .editorial-section {
        padding: 50px 20px;
    }

    .services-editorial,
    .contact-form-section,
    .testimonials-section {
        padding: 60px 20px;
    }

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

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

    .footer-links {
        flex: none;
    }

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

    .service-card {
        max-width: 100%;
    }

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

    .sticky-cta .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 12px 24px;
    }

    .inline-cta {
        padding: 32px 24px;
    }
}
