/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #8b7355;
    --accent-color: #c9a87c;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd9;
    --error-color: #c74444;
    --success-color: #5a8f5a;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 18px;
    background-color: var(--bg-white);
}

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

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

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

/* Navigation */
.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

/* Hero Editorial */
.hero-editorial {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    color: var(--bg-white);
    font-weight: 400;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Story Content - Editorial Layout */
.story-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--primary-color);
}

.story-content h3 {
    font-size: 1.6rem;
    margin: 3rem 0 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.story-content h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-weight: 500;
    color: var(--text-color);
}

.story-content p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.story-content section {
    margin-bottom: 4rem;
}

/* Inline Figures */
.inline-figure,
.inline-figure-wide {
    margin: 3rem 0;
}

.inline-figure img {
    width: 100%;
    border-radius: 2px;
}

.inline-figure-wide img {
    width: 100%;
    margin-left: -10%;
    width: 120%;
    max-width: 120%;
    border-radius: 2px;
}

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

/* Blockquote */
blockquote {
    margin: 3rem 0;
    padding: 2rem;
    border-left: 3px solid var(--secondary-color);
    background-color: var(--bg-light);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.step h4 {
    margin: 0 0 0.5rem;
}

.step p {
    margin: 0;
}

/* Testimonials */
.testimonial {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

/* Benefits */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    padding: 1.5rem;
    border-left: 3px solid var(--accent-color);
    background-color: var(--bg-light);
}

.benefit-item h4 {
    margin: 0 0 0.8rem;
    color: var(--secondary-color);
}

.benefit-item p {
    margin: 0;
}

/* Services Pricing */
.services-pricing {
    margin: 3rem 0;
}

.services-intro {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.service-card {
    position: relative;
    margin: 2rem 0;
    padding: 2rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card.featured {
    border: 2px solid var(--secondary-color);
}

.service-card.premium {
    border: 2px solid var(--accent-color);
    background-color: var(--bg-light);
}

.service-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-badge.premium-badge {
    background-color: var(--accent-color);
}

.service-card h3,
.service-card h4 {
    margin: 0.5rem 0;
}

.service-description {
    margin: 1rem 0;
    line-height: 1.6;
}

.service-includes {
    margin: 1.5rem 0;
}

.service-includes h4 {
    font-size: 1rem;
    margin: 0 0 0.8rem;
    color: var(--text-light);
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.price-period {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
}

.service-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0.5rem 0;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-decoration: none;
    margin-top: 1rem;
}

.btn-service:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

/* CTA Sections */
.cta-inline,
.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
}

.final-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
}

.final-cta h3 {
    margin: 0 0 1rem;
}

.final-cta p {
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-decoration: none;
    border: none;
}

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

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

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

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    width: 100%;
    margin-top: 1rem;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    padding: 1rem;
    text-align: center;
    z-index: 90;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.sticky-btn {
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sticky-btn:hover {
    color: var(--accent-color);
}

/* Forms */
.form-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.form-section h2,
.form-section h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-section > p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 200;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.btn-reject:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 5%;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

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

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column h5 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-column a:hover {
    color: var(--bg-white);
}

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

/* Page Hero (for other pages) */
.page-hero {
    position: relative;
    padding: 5rem 2rem 3rem;
    text-align: center;
    background-color: var(--bg-light);
}

.page-hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.page-hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Contact Specific */
.contact-info-section {
    margin: 3rem 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-method {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.contact-method h3 {
    margin: 0 0 1rem;
    color: var(--secondary-color);
}

.contact-method p {
    margin: 0.5rem 0;
}

.contact-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

address {
    font-style: normal;
    line-height: 1.6;
}

.schedule {
    margin: 1rem 0;
}

.schedule p {
    margin: 0.5rem 0;
}

.schedule-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.map-section {
    margin: 3rem 0;
}

.map-placeholder {
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
}

.map-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-additional {
    margin: 3rem 0;
}

.contact-additional ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.contact-additional li {
    margin: 0.7rem 0;
}

.privacy-note {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
}

.thanks-section {
    padding: 3rem 2rem;
}

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

.thanks-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-info {
    margin: 3rem 0;
    text-align: left;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 3rem 0;
    align-items: center;
}

.thanks-note {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    text-align: left;
}

.testimonial-thanks {
    margin: 3rem 0;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-section {
    margin: 3rem 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin: 0.7rem 0;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

/* FAQ */
.faq-section {
    margin: 4rem 0;
}

.faq-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.faq-item h4 {
    margin: 0 0 1rem;
    color: var(--secondary-color);
}

.faq-item p {
    margin: 0;
}

/* Values and Philosophy */
.value-item {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 3px solid var(--secondary-color);
    background-color: var(--bg-light);
}

.value-item h4 {
    margin: 0 0 0.8rem;
    color: var(--secondary-color);
}

.value-item p {
    margin: 0;
}

.process-highlight {
    padding: 1.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 4px;
    margin: 2rem 0;
}

.process-highlight p {
    margin: 0;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .minimal-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .story-content {
        padding: 2rem 1.5rem;
    }

    .story-content h2 {
        font-size: 1.8rem;
    }

    .story-content h3 {
        font-size: 1.4rem;
    }

    .inline-figure-wide img {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .thanks-actions {
        width: 100%;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }

    .sticky-cta {
        padding: 0.8rem;
    }

    .sticky-btn {
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-text-overlay h1 {
        font-size: 2.5rem;
    }

    .story-content {
        padding: 3rem 2rem;
    }
}

@media (min-width: 1025px) {
    .inline-figure-wide img {
        margin-left: -15%;
        width: 130%;
        max-width: 130%;
    }
}
