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

:root {
    --primary: #c8553d;
    --primary-dark: #a84332;
    --secondary: #2d3a3a;
    --accent: #f4a259;
    --light: #faf7f5;
    --cream: #fff8f0;
    --text: #3d3d3d;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

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

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}

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

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

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 5px 0;
}

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

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

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Editorial */
.hero-editorial {
    padding: 160px 20px 100px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-editorial-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-kicker {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.hero-editorial h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    color: var(--secondary);
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-editorial .lead {
    font-size: 1.35rem;
    color: var(--text-light);
    max-width: 700px;
    line-height: 1.8;
    margin-bottom: 45px;
}

.hero-image-wrap {
    margin-top: 60px;
    position: relative;
}

.hero-image-wrap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.hero-image-caption {
    position: absolute;
    bottom: -15px;
    right: 30px;
    background: var(--white);
    padding: 15px 25px;
    box-shadow: var(--shadow);
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 38px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

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

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

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

.btn-accent:hover {
    background: #e8933d;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.1rem;
}

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

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

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

.editorial-text {
    max-width: 700px;
    margin: 0 auto;
}

.editorial-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--secondary);
    line-height: 1.3;
}

.bg-secondary .editorial-text h2 {
    color: var(--white);
}

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

.bg-secondary .editorial-text p {
    color: rgba(255,255,255,0.85);
}

.editorial-text .highlight {
    background: linear-gradient(180deg, transparent 60%, rgba(244,162,89,0.3) 60%);
    padding: 0 5px;
}

.editorial-image-full {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin: 50px 0;
}

.editorial-image-side {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.editorial-image-side.reverse {
    flex-direction: row-reverse;
}

.editorial-image-side .image-col {
    flex: 1;
}

.editorial-image-side .image-col img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
}

.editorial-image-side .text-col {
    flex: 1;
}

/* Inline CTA */
.inline-cta {
    background: var(--light);
    padding: 40px;
    margin: 50px 0;
    border-left: 4px solid var(--primary);
}

.inline-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-style: italic;
}

/* Services */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

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

.service-price .unit {
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Quote Block */
.quote-block {
    padding: 100px 20px;
    background: var(--secondary);
    text-align: center;
}

.quote-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.8rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.6;
    position: relative;
}

.quote-text::before {
    content: '"';
    font-size: 6rem;
    position: absolute;
    top: -50px;
    left: -30px;
    color: var(--primary);
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-author {
    margin-top: 30px;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

/* Testimonials */
.testimonials-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 50px auto 0;
}

.testimonial-item {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-item::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 40px;
}

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

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

.testimonial-name {
    font-weight: 600;
    color: var(--secondary);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Form */
.form-section {
    padding: 100px 20px;
    background: var(--cream);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.form-wrapper h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.form-wrapper .form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

/* Contact Info */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 900px;
    margin: 50px auto 0;
}

.contact-item {
    flex: 1 1 200px;
    text-align: center;
    padding: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

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

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.sticky-cta a:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--white);
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding-top: 30px;
    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(--secondary);
    color: var(--white);
    padding: 25px;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

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

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

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

.cookie-btn:hover {
    opacity: 0.9;
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

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

.thanks-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-service {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.thanks-service span {
    color: var(--primary);
    font-weight: 600;
}

/* About Page */
.about-hero {
    padding: 160px 20px 80px;
    background: var(--cream);
}

.about-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.about-story .editorial-text {
    font-size: 1.1rem;
}

.about-values {
    padding: 80px 20px;
    background: var(--light);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.value-item {
    flex: 1 1 280px;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-item p {
    color: var(--text-light);
}

/* Legal Pages */
.legal-page {
    padding: 160px 20px 80px;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 40px;
    margin-bottom: 20px;
}

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

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow);
    }

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

    .nav-links li {
        border-bottom: 1px solid #eee;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-editorial {
        padding: 120px 20px 60px;
        min-height: auto;
    }

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

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

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

    .editorial-image-side {
        flex-direction: column;
        gap: 30px;
    }

    .editorial-image-side.reverse {
        flex-direction: column;
    }

    .editorial-image-side .image-col img {
        height: 300px;
    }

    .quote-text {
        font-size: 1.4rem;
    }

    .quote-text::before {
        font-size: 4rem;
        top: -30px;
        left: 0;
    }

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

    .form-wrapper {
        padding: 30px 20px;
    }

    .footer-grid {
        gap: 30px;
    }

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

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

@media (max-width: 480px) {
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 16px 35px;
    }

    .editorial-section {
        padding: 60px 15px;
    }

    .editorial-text h2 {
        font-size: 1.8rem;
    }
}
