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

:root {
    --primary: #2d4a5e;
    --secondary: #8b6f5c;
    --accent: #c9a66b;
    --dark: #1a2a36;
    --light: #f7f4f0;
    --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);
}

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

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

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

.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 20px rgba(0,0,0,0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-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);
    letter-spacing: -0.5px;
}

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

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

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

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

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

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

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

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

.btn-primary:hover {
    background: #b8954f;
    color: var(--dark);
    transform: translateY(-2px);
}

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

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

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

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

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

.hero-editorial .narrow {
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.25;
    margin-bottom: 28px;
    font-weight: 300;
    letter-spacing: -1px;
}

.hero-editorial h1 strong {
    font-weight: 700;
    color: var(--accent);
}

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

/* Story Sections */
.story-section {
    padding: 80px 20px;
}

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

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

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

.story-section.bg-muted {
    background: #e8e4df;
}

.story-heading {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.3;
}

.story-section.bg-dark .story-heading {
    color: var(--accent);
}

.story-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text);
}

.story-section.bg-dark .story-text {
    color: rgba(255,255,255,0.85);
}

.story-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.story-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Quote Block */
.quote-block {
    padding: 60px 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    margin: 50px 0;
    position: relative;
}

.quote-block::before {
    content: '"';
    font-size: 120px;
    position: absolute;
    top: -20px;
    left: 30px;
    color: var(--accent);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.quote-block p {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.quote-block cite {
    display: block;
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.8;
    font-style: normal;
}

/* Split Content */
.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Inline CTA */
.inline-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
    color: var(--white);
}

.inline-cta h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.inline-cta p {
    margin-bottom: 24px;
    opacity: 0.9;
}

/* Services Cards */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 40px 0;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    flex: 1 1 320px;
    max-width: 380px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
}

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

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

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

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

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

/* Testimonials */
.testimonial {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    position: relative;
}

.testimonial::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--accent);
    border-radius: 4px 0 0 4px;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
}

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

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

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

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark) 0%, #243442 100%);
    color: var(--white);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    color: var(--text);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
}

.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 18px;
    border: 2px solid #e0dcd7;
    border-radius: 8px;
    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(--accent);
}

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

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

.form-submit:hover {
    background: #b8954f;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta p {
    color: var(--white);
    font-size: 0.95rem;
}

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

/* 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;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

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

.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-bottom {
    text-align: center;
    padding-top: 30px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

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

.cookie-banner.show {
    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;
    font-size: 0.95rem;
    color: var(--text);
}

.cookie-text a {
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    font-weight: 500;
}

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

.cookie-reject {
    background: transparent;
    border: 1px solid var(--muted);
    color: var(--text);
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--dark);
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Page Header */
.page-header {
    padding: 140px 20px 60px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

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

.page-header p {
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

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

.content-page .narrow {
    max-width: 800px;
}

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

.content-page h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin: 30px 0 15px;
}

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

.content-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

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

/* Contact Info */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 0;
}

.contact-item {
    flex: 1 1 250px;
    text-align: center;
    padding: 30px;
    background: var(--light);
    border-radius: 12px;
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-item p {
    color: var(--muted);
}

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

.about-hero h1 {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 0;
}

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

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

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

/* Urgency Badge */
.urgency-badge {
    display: inline-block;
    background: #d64545;
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Number List */
.number-list {
    counter-reset: item;
    list-style: none;
    padding: 0;
}

.number-list li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.number-list li::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

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

    .nav-menu li {
        border-bottom: 1px solid var(--light);
    }

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

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

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

    .split-content {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

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

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

    .quote-block {
        padding: 40px 25px;
    }

    .quote-block p {
        font-size: 1.15rem;
    }

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

    .sticky-cta {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

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

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

    .story-heading {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

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

    .service-price {
        font-size: 1.6rem;
    }
}
