:root {
    --color-primary: #8B4513;
    --color-secondary: #D2691E;
    --color-accent: #CD853F;
    --color-dark: #2C1810;
    --color-light: #FDF5E6;
    --color-cream: #FAF0E6;
    --color-terracotta: #E2725B;
    --color-clay: #B87333;
    --color-white: #FFFFFF;
    --color-text: #3D2914;
    --color-muted: #8B7355;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --max-width-narrow: 680px;
    --max-width-medium: 900px;
    --max-width-wide: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-light);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 17px;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: 1.3;
}

.header {
    background: var(--color-white);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(44, 24, 16, 0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.hero-editorial {
    padding: 4rem 2rem 6rem;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23E2725B' stroke-width='0.5' opacity='0.2'/%3E%3C/svg%3E") repeat;
    opacity: 0.3;
}

.hero-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.editorial-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 3rem 2rem;
}

.editorial-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.editorial-content p:first-of-type::first-letter {
    float: left;
    font-size: 4rem;
    line-height: 1;
    font-family: var(--font-heading);
    color: var(--color-terracotta);
    margin-right: 0.5rem;
    margin-top: 0.1rem;
}

.inline-image {
    margin: 3rem -2rem;
    position: relative;
}

.inline-image img {
    width: calc(100% + 4rem);
    max-width: none;
    height: 400px;
    object-fit: cover;
}

.inline-image figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-top: 0.8rem;
    font-style: italic;
}

.pullquote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-primary);
    border-left: 4px solid var(--color-terracotta);
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    background: var(--color-cream);
    font-style: italic;
    line-height: 1.5;
}

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

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

.btn-primary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(226, 114, 91, 0.4);
}

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

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

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.cta-inline {
    text-align: center;
    padding: 3rem 0;
    margin: 2rem 0;
}

.section {
    padding: 5rem 2rem;
}

.section-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.section-medium {
    max-width: var(--max-width-medium);
    margin: 0 auto;
}

.section-wide {
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.section-cream {
    background: var(--color-cream);
}

.section-dark {
    background: var(--color-dark);
    color: var(--color-light);
}

.section-dark h2,
.section-dark h3 {
    color: var(--color-white);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--color-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-image {
    flex: 0 0 45%;
    height: 300px;
    background: var(--color-clay);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

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

.service-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-clay) 0%, var(--color-terracotta) 100%);
}

.service-image-placeholder svg {
    width: 80px;
    height: 80px;
    fill: var(--color-white);
    opacity: 0.6;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-terracotta);
    font-family: var(--font-heading);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--color-clay) 0%, var(--color-terracotta) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-image svg {
    width: 60px;
    height: 60px;
    fill: var(--color-white);
    opacity: 0.7;
}

.service-card-content {
    padding: 1.5rem;
}

.service-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--color-cream);
}

.service-card-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-terracotta);
}

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

.feature-item {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--color-terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--color-white);
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

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

.testimonials {
    padding: 5rem 2rem;
    background: var(--color-cream);
}

.testimonials-container {
    max-width: var(--max-width-medium);
    margin: 0 auto;
}

.testimonial-item {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.06);
    position: relative;
}

.testimonial-item::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-terracotta);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-clay);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 700;
}

.testimonial-info h5 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

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

.form-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--color-light) 0%, var(--color-cream) 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.1);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-terracotta);
}

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

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    width: 100%;
}

.contact-info {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

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

.contact-details h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

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

.footer {
    background: var(--color-dark);
    color: var(--color-light);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links {
    flex: 0 1 200px;
}

.footer-links h4 {
    color: var(--color-white);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-terracotta);
}

.footer-bottom {
    max-width: var(--max-width-wide);
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.sticky-cta .btn {
    box-shadow: 0 4px 20px rgba(226, 114, 91, 0.4);
    padding: 1rem 1.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

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

.cookie-buttons .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

.page-header {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

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

.legal-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

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

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

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

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

.thanks-content p {
    color: var(--color-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-story {
    padding: 5rem 2rem;
}

.about-story-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.about-image-full {
    margin: 3rem 0;
    height: 400px;
    background: linear-gradient(135deg, var(--color-clay) 0%, var(--color-terracotta) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-full svg {
    width: 100px;
    height: 100px;
    fill: var(--color-white);
    opacity: 0.5;
}

.team-section {
    padding: 5rem 2rem;
    background: var(--color-cream);
}

.team-grid {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.06);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-clay) 0%, var(--color-terracotta) 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
}

.team-member h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.team-member .role {
    color: var(--color-terracotta);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

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

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: 1rem 2rem;
        box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid var(--color-cream);
    }

    .main-nav a {
        display: block;
        padding: 1rem 0;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: none;
        width: 100%;
    }

    .inline-image {
        margin: 2rem 0;
    }

    .inline-image img {
        width: 100%;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-cta .btn {
        width: 100%;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem;
    }

    .hero-editorial {
        padding: 3rem 1rem 4rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .editorial-content {
        padding: 2rem 1rem;
    }

    .pullquote {
        padding: 1rem 1.5rem;
        font-size: 1.3rem;
    }
}
