:root {
    --primary: #c4553a;
    --primary-dark: #9e3d28;
    --secondary: #2c3e50;
    --accent: #e8d5b7;
    --text: #333333;
    --text-light: #666666;
    --bg-light: #faf8f5;
    --bg-warm: #f5efe6;
    --white: #ffffff;
    --shadow: rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

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

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

h1, h2, h3, h4 {
    font-family: 'Georgia', serif;
    font-weight: 400;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.2rem;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

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

a:hover {
    color: var(--primary-dark);
}

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

header {
    position: relative;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

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

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

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav ul li a {
    color: var(--text);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

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

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--secondary);
    transition: 0.3s;
}

.hero-editorial {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-warm) 100%);
}

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

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-editorial h1 {
    color: var(--secondary);
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.hero-image {
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
}

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

.editorial-section {
    padding: 5rem 0;
}

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

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

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.inline-image {
    margin: 2.5rem 0;
    border-radius: 6px;
    overflow: hidden;
}

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

.inline-image.float-right {
    float: right;
    width: 45%;
    margin: 0 0 1.5rem 2rem;
}

.inline-image.float-left {
    float: left;
    width: 45%;
    margin: 0 2rem 1.5rem 0;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

.drop-cap::first-letter {
    float: left;
    font-size: 4rem;
    line-height: 0.8;
    padding-right: 0.8rem;
    color: var(--primary);
}

.cta-inline {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    margin: 1.5rem 0;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.cta-outline {
    display: inline-block;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

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

.cta-text {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-text::after {
    content: '→';
    transition: transform 0.3s ease;
}

.cta-text:hover::after {
    transform: translateX(5px);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-card {
    flex: 1 1 300px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    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.12);
}

.service-card h3 {
    color: var(--secondary);
}

.service-price {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 400;
    margin: 1rem 0;
}

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

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

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

.quote-block {
    background: var(--secondary);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.quote-block blockquote {
    font-size: 1.4rem;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.quote-block cite {
    font-size: 0.95rem;
    opacity: 0.8;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 20px var(--shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.form-section {
    background: var(--bg-warm);
    padding: 5rem 0;
}

.form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    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-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(196,85,58,0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.about-hero {
    padding: 5rem 0;
    background: var(--bg-light);
    text-align: center;
}

.team-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

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

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--accent);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-item {
    flex: 1 1 250px;
}

.contact-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

footer {
    background: var(--secondary);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    color: var(--accent);
    margin-bottom: 1.2rem;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

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

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

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

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

.legal-page {
    padding: 4rem 0;
}

.legal-page h1 {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 2rem;
    color: var(--secondary);
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-light);
}

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

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

.highlight-box {
    background: var(--accent);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

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

.stat-number {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 400;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 2rem auto;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.image-grid-item {
    flex: 1 1 200px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

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

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        box-shadow: 0 10px 30px var(--shadow);
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .inline-image.float-right,
    .inline-image.float-left {
        float: none;
        width: 100%;
        margin: 2rem 0;
    }

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

    .form-container {
        padding: 2rem;
    }

    .sticky-cta {
        bottom: 80px;
    }

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

@media (max-width: 480px) {
    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }
}
