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

:root {
    --primary: #c45c26;
    --primary-dark: #a04a1e;
    --secondary: #2d5a3f;
    --accent: #e8b86d;
    --text-dark: #1a1a1a;
    --text-light: #f9f6f2;
    --bg-cream: #fdfbf7;
    --bg-warm: #f5efe6;
    --bg-dark: #1e1e1e;
    --shadow: 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-dark);
    background: var(--bg-cream);
}

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

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

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 600;
}

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

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

/* Navigation */
.nav-wrapper {
    background: var(--bg-cream);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: relative;
    z-index: 100;
}

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

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

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 4px 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: 26px;
    height: 2px;
    background: var(--text-dark);
    transition: transform 0.3s ease;
}

/* Hero Editorial */
.hero-editorial {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
    padding: 80px 20px 100px;
}

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

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

.hero-editorial h1 {
    font-size: 3.2rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

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

.hero-img {
    margin: 50px auto 0;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px var(--shadow);
}

.hero-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    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);
    transform: translateY(-2px);
}

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

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

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

.btn-dark:hover {
    background: #333;
}

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

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

.story-content {
    max-width: 680px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.story-content p {
    margin-bottom: 20px;
    color: #444;
    font-size: 1.05rem;
}

.story-content .inline-img {
    margin: 40px -60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
}

.story-content .inline-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.story-cta {
    margin-top: 32px;
}

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

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

.split-img {
    flex: 1;
    min-height: 500px;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: var(--bg-cream);
}

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

.split-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.split-content p {
    margin-bottom: 16px;
    opacity: 0.9;
}

/* Services Cards */
.services-section {
    padding: 100px 20px;
    background: var(--bg-warm);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-img {
    height: 200px;
    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-body {
    padding: 28px;
}

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

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

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

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

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

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

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

.quote-section cite {
    display: block;
    margin-top: 30px;
    font-size: 1rem;
    font-style: normal;
    color: rgba(255,255,255,0.7);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 20px;
    background: var(--bg-cream);
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: #fff;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 8px 30px var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card p {
    margin-bottom: 20px;
    padding-top: 30px;
    color: #444;
    line-height: 1.7;
}

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

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

.author-info strong {
    display: block;
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
}

/* Gallery */
.gallery-section {
    padding: 80px 20px;
    background: var(--bg-dark);
}

.gallery-section .section-header {
    color: var(--text-light);
}

.gallery-section .section-header p {
    color: rgba(255,255,255,0.7);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.gallery-item {
    flex: 1 1 280px;
    max-width: 360px;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.4rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn {
    background: #fff;
    color: var(--primary);
}

.cta-banner .btn:hover {
    background: var(--text-light);
    transform: translateY(-2px);
}

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

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 50px var(--shadow);
}

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 12px;
    font-size: 2rem;
}

.form-wrapper > p {
    text-align: center;
    color: #666;
    margin-bottom: 36px;
}

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

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

.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: #fff;
}

.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;
    margin-top: 32px;
}

.form-submit .btn {
    min-width: 200px;
}

/* Footer */
.main-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 70px 20px 30px;
}

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

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

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

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

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

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

.footer-col a:hover {
    color: #fff;
}

.footer-col p {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    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(--bg-dark);
    color: var(--text-light);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

.cookie-buttons .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

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

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

.sticky-cta .btn {
    box-shadow: 0 8px 25px rgba(196, 92, 38, 0.4);
    border-radius: 50px;
    padding: 16px 28px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
    padding: 80px 20px;
    text-align: center;
}

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

.page-header p {
    color: #666;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page */
.about-intro {
    padding: 80px 20px;
}

.about-intro .story-content {
    text-align: center;
}

.team-section {
    padding: 80px 20px;
    background: var(--bg-warm);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.team-member-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.team-member span {
    color: var(--primary);
    font-size: 0.95rem;
}

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

/* Contact Page */
.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

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

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
}

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

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

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: #fff;
}

.thanks-content h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.thanks-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* Legal Pages */
.legal-content {
    padding: 60px 20px 100px;
}

.legal-content .narrow {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
}

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

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

.legal-content p {
    margin-bottom: 16px;
    color: #444;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    color: #444;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .split-section {
        flex-direction: column;
    }

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

    .split-img {
        min-height: 350px;
    }

    .split-content {
        padding: 50px 30px;
    }

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

    .hero-img img {
        height: 320px;
    }

    .story-content .inline-img {
        margin: 30px 0;
    }

    .quote-section blockquote {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-cream);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-editorial {
        padding: 50px 20px 70px;
    }

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

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

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

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

    .cta-banner h2 {
        font-size: 1.8rem;
    }

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

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

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

    .legal-content .narrow {
        padding: 30px 20px;
    }
}

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

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

    .testimonial-card {
        padding: 24px;
    }

    .footer-grid {
        gap: 30px;
    }
}
