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

:root {
    --primary: #2d5a4a;
    --secondary: #e8a44d;
    --dark: #1a2f28;
    --light: #f7f4ef;
    --accent: #8b4513;
    --text: #3a3a3a;
    --muted: #6b6b6b;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

/* Navigation */
.nav-wrapper {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

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

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

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

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

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

/* Hero Editorial */
.hero-editorial {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 100px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--secondary);
    opacity: 0.08;
    border-radius: 50%;
}

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

.hero-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    opacity: 0.92;
    margin-bottom: 36px;
    line-height: 1.8;
}

/* 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;
}

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

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

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

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

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

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

.btn-link {
    color: var(--primary);
    font-weight: 600;
    padding: 0;
    background: none;
}

.btn-link:hover {
    color: var(--secondary);
}

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

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

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

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-intro h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.dark-bg .section-intro h2 {
    color: var(--secondary);
}

.section-intro p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.dark-bg .section-intro p {
    color: rgba(255,255,255,0.8);
}

/* Story Block */
.story-block {
    margin-bottom: 50px;
}

.story-block h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 18px;
}

.story-block p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

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

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

.story-image.wide {
    margin-left: -80px;
    margin-right: -80px;
    border-radius: 0;
}

/* Inline CTA */
.inline-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #3d7a64 100%);
    padding: 40px;
    border-radius: 12px;
    color: var(--white);
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.inline-cta h4 {
    font-size: 1.4rem;
}

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

/* Cards */
.card-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    height: 180px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

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

.card-body {
    padding: 28px;
}

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

.card-body p {
    color: var(--muted);
    margin-bottom: 18px;
    font-size: 0.95rem;
}

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

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

/* Service Cards Specific */
.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 36px;
    margin-bottom: 24px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary) 0%, #d4942f 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.service-content {
    flex: 1;
}

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

.service-content p {
    color: var(--muted);
    margin-bottom: 16px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

.service-detail {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Testimonials */
.testimonial-block {
    background: var(--white);
    border-left: 4px solid var(--secondary);
    padding: 30px 36px;
    margin: 40px 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}

.testimonial-block p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

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

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 50px 20px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--muted);
}

.dark-bg .stat-label {
    color: rgba(255,255,255,0.7);
}

/* Features List */
.features-list {
    list-style: none;
}

.features-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.features-list li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--white);
}

/* Form Styles */
.form-section {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
    padding: 80px 20px;
}

.form-container {
    background: var(--white);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: center;
}

.form-container .subtitle {
    color: var(--muted);
    text-align: center;
    margin-bottom: 36px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.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: 16px;
    font-size: 1.1rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.footer-col ul li a:hover {
    color: var(--secondary);
}

.footer-col p {
    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);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
}

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

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

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

.sticky-cta .btn {
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-inner p {
    flex: 1;
    font-size: 0.95rem;
    min-width: 280px;
}

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

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

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

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

.cookie-accept:hover {
    background: #d4942f;
}

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

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

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Policy Pages */
.policy-content {
    padding: 60px 20px;
    background: var(--white);
}

.policy-content h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin: 40px 0 18px;
}

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

.policy-content p {
    margin-bottom: 16px;
    color: var(--text);
}

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

.policy-content ul li {
    margin-bottom: 10px;
    color: var(--text);
}

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

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

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

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

.thanks-content h1 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 18px;
}

.thanks-content p {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 30px;
}

/* Split Section */
.split-section {
    display: flex;
    min-height: 400px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.split-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 18px;
}

.split-content p {
    color: var(--muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

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

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

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

    .nav-links li:last-child {
        border-bottom: none;
    }

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

    .hamburger {
        display: flex;
    }

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

    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .stats-row {
        gap: 30px;
    }

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

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

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

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

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

@media (max-width: 600px) {
    .hero-editorial {
        padding: 70px 20px 50px;
    }

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

    .section-intro h2 {
        font-size: 1.7rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .inline-cta {
        padding: 28px;
    }
}
