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

:root {
    --primary: #8B4513;
    --secondary: #D2691E;
    --accent: #CD853F;
    --dark: #2C1810;
    --light: #FDF5E6;
    --cream: #FFFAF0;
    --terracotta: #E2725B;
    --clay: #B87333;
    --text: #3D2914;
    --muted: #6B5344;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text);
    background-color: var(--cream);
}

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

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

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

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

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

/* Navigation */
.main-nav {
    background: var(--cream);
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.4rem;
    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;
    color: var(--text);
    position: relative;
}

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

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

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* Hero Editorial */
.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--light) 0%, var(--cream) 100%);
}

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

.hero-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--terracotta);
    margin-bottom: 20px;
}

.hero-editorial h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 40px;
}

.hero-image-wrap {
    margin: 50px 0;
    position: relative;
}

.hero-image-wrap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
}

.image-caption {
    font-size: 0.85rem;
    color: var(--muted);
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

/* Story Section */
.story-section {
    padding: 70px 0;
}

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

.story-section h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 24px;
    font-weight: 400;
}

.story-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.story-section p:last-of-type {
    margin-bottom: 0;
}

.inline-image {
    margin: 40px -60px;
    position: relative;
}

.inline-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 3px;
}

.pull-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary);
    border-left: 3px solid var(--terracotta);
    padding: 20px 0 20px 30px;
    margin: 40px 0;
    line-height: 1.6;
}

/* Inline CTA */
.inline-cta {
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 3px;
    display: inline-block;
    margin: 30px 0;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.inline-cta:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

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

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

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

.service-price {
    font-size: 1.4rem;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card .btn-secondary {
    width: 100%;
    text-align: center;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 36px;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 12px 28px;
    border: 2px solid var(--primary);
    border-radius: 3px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: var(--dark);
    color: var(--cream);
}

.testimonial-wrap {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial-item {
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    border-left: 3px solid var(--terracotta);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--accent);
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: var(--light);
}

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

.form-intro {
    text-align: center;
    color: var(--muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

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

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

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

.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 {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--terracotta);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 90;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sticky-cta:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

/* Footer */
.main-footer {
    background: var(--dark);
    color: var(--cream);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 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: var(--cream);
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

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

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

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

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

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

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

.cookie-accept {
    background: var(--terracotta);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

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

.cookie-reject {
    background: transparent;
    color: var(--cream);
    padding: 12px 28px;
    border: 1px solid var(--cream);
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

/* Page Headers */
.page-header {
    background: var(--light);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark);
    margin-bottom: 16px;
    font-weight: 400;
}

.page-header p {
    color: var(--muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page */
.about-content {
    padding: 70px 0;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-grid.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 1.7rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-text p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 4px;
    height: 380px;
    object-fit: cover;
    width: 100%;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--light);
}

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 50px;
    font-weight: 400;
}

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

.team-member {
    text-align: center;
    flex: 0 1 280px;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

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

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

/* Contact Page */
.contact-content {
    padding: 70px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

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

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

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

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

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

.contact-form-wrap {
    flex: 1;
}

/* Services Page */
.services-content {
    padding: 70px 0;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--muted);
}

.service-full {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(139,69,19,0.1);
    align-items: center;
}

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

.service-full:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-full-image {
    flex: 1;
}

.service-full-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 4px;
}

.service-full-content {
    flex: 1;
}

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

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

.service-full-price {
    font-size: 1.6rem;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
}

/* Legal Pages */
.legal-content {
    padding: 70px 0;
}

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

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

.legal-content p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

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

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

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

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

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

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

/* Mobile Responsive */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid rgba(139,69,19,0.1);
    }

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

    .nav-links li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(139,69,19,0.05);
    }

    .hamburger {
        display: flex;
    }

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

    .about-grid,
    .about-grid.reverse,
    .contact-grid,
    .service-full,
    .service-full:nth-child(even) {
        flex-direction: column;
    }

    .inline-image {
        margin: 30px 0;
    }

    .contact-form {
        padding: 30px;
    }

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

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

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

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

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

    .pull-quote {
        font-size: 1.2rem;
        padding-left: 20px;
    }

    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-item {
        padding: 25px;
    }

    .form-section {
        padding: 50px 0;
    }

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