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

:root {
    --primary-color: #8B7355;
    --secondary-color: #C9A86A;
    --text-dark: #2C2416;
    --text-light: #5A4F3F;
    --bg-light: #FAF8F5;
    --bg-white: #FFFFFF;
    --border-color: #E5DDD5;
    --accent-color: #A89080;
}

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

.ad-disclosure {
    background-color: #FFF9E6;
    border-bottom: 1px solid #E8D9B8;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6B5B3D;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-white);
}

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

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    transition: color 0.3s ease;
}

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

.story-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

.story-hero {
    margin-bottom: 50px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 3px;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.story-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.story-subtitle {
    font-size: 22px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
}

.story-content {
    font-size: 19px;
    line-height: 1.8;
}

.opening-text {
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.story-content p {
    margin-bottom: 28px;
}

.story-content h2 {
    font-size: 32px;
    font-weight: 500;
    margin-top: 55px;
    margin-bottom: 25px;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.story-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 35px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.section-heading {
    font-size: 36px;
    font-weight: 400;
    margin: 50px 0 30px;
    color: var(--text-dark);
    letter-spacing: -0.4px;
}

.inline-image-section {
    width: calc(100% + 120px);
    margin-left: -60px;
    margin-top: 45px;
    margin-bottom: 45px;
    overflow: hidden;
    border-radius: 2px;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.services-intro {
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 35px;
    background-color: var(--bg-light);
    border-radius: 3px;
}

.services-intro h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 18px;
}

.services-intro p {
    margin-bottom: 0;
    font-size: 18px;
}

.service-cards-embedded {
    margin: 50px 0;
}

.service-card {
    margin-bottom: 55px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.service-card:last-child {
    border-bottom: none;
}

.service-image-wrapper {
    width: 100%;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 3px;
}

.service-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card h3 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-light);
}

.price-display {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 25px 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.select-service-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.select-service-btn:hover {
    background-color: #6F5D47;
    transform: translateY(-1px);
}

.select-service-btn:active {
    transform: translateY(0);
}

.process-narrative {
    margin: 55px 0;
    padding: 35px;
    background-color: #F5F1EB;
    border-left: 4px solid var(--primary-color);
}

.process-narrative h2 {
    margin-top: 0;
    font-size: 26px;
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 3px;
}

.form-section h2 {
    margin-top: 0;
    font-size: 30px;
    margin-bottom: 15px;
}

.form-section > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.embedded-form {
    max-width: 100%;
}

.selected-service-display {
    background-color: #E8DED0;
    padding: 18px 22px;
    border-radius: 3px;
    margin-bottom: 25px;
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.selected-service-display.active {
    display: block;
}

.selected-service-display strong {
    color: var(--primary-color);
    font-size: 17px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D0C4B4;
    border-radius: 3px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background-color: white;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #6F5D47;
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

.closing-text {
    margin-top: 55px;
    font-size: 20px;
    font-style: italic;
    color: var(--text-light);
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.page-header {
    margin-bottom: 45px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 400;
    color: var(--text-dark);
}

.header-intro {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    margin: 50px 0;
    padding: 35px;
    background-color: var(--bg-light);
    border-radius: 3px;
    text-align: center;
}

.cta-section h3 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 17px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 30px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.cta-btn.primary:hover {
    background-color: #6F5D47;
    border-color: #6F5D47;
    transform: translateY(-1px);
}

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

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

.services-list-detailed {
    margin: 40px 0;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 65px;
    gap: 30px;
}

.service-detail-card .service-text {
    flex: 1;
}

.service-detail-card h2 {
    margin-top: 0;
    font-size: 30px;
    color: var(--primary-color);
}

.service-detail-card p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
}

.price-tag {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 22px 0 18px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.process-info {
    margin: 50px 0;
    padding: 35px;
    background-color: #F5F1EB;
    border-radius: 3px;
}

.process-info h2 {
    margin-top: 0;
    font-size: 26px;
}

.contact-info-layout {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin: 40px 0;
}

.contact-text-section {
    flex: 1;
}

.contact-details {
    margin: 35px 0;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 0;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-item .note {
    font-size: 15px;
    font-style: italic;
    color: #7A6F5F;
    margin-top: 10px;
}

.visit-note {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 3px;
}

.visit-note h3 {
    margin-top: 0;
    font-size: 22px;
}

.contact-visual-section .image-wrapper {
    width: calc(100% + 120px);
    margin-left: -60px;
    overflow: hidden;
    border-radius: 2px;
}

.contact-visual-section .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.location-info,
.shipping-info {
    margin: 45px 0;
}

.location-info h2,
.shipping-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.thanks-page-content {
    text-align: center;
    max-width: 100%;
    padding: 40px 0;
}

.thanks-icon {
    margin: 30px auto 35px;
    display: flex;
    justify-content: center;
}

.thanks-page-content h1 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-message {
    margin: 30px 0 50px;
}

.thanks-message p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.step-text {
    flex: 1;
}

.step-text h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.thanks-cta {
    margin-top: 50px;
    padding: 35px;
    background-color: var(--bg-light);
    border-radius: 3px;
}

.thanks-cta p {
    font-size: 17px;
    margin-bottom: 25px;
}

.legal-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 50px 30px 80px;
}

.legal-header {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.legal-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 400;
    color: var(--text-dark);
}

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
}

.legal-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 45px;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: 500;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

.legal-content p {
    margin-bottom: 18px;
}

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

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #6F5D47;
}

.cookie-table {
    margin: 30px 0;
}

.cookie-entry {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 3px;
    margin-bottom: 20px;
}

.cookie-entry h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 17px;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

.cookie-entry p {
    font-size: 15px;
    margin-bottom: 8px;
}

.site-footer {
    background-color: #2C2416;
    color: #C9B8A3;
    padding: 50px 40px 25px;
    margin-top: 80px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 35px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: var(--secondary-color);
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #C9B8A3;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(201, 168, 106, 0.1);
    border-radius: 3px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid #4A3F32;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #9A8C7A;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C2416;
    color: white;
    padding: 25px 30px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    min-width: 300px;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn.accept {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.cookie-btn.accept:hover {
    background-color: #B89654;
    transform: translateY(-1px);
}

.cookie-btn.reject {
    background-color: transparent;
    color: white;
    border: 1px solid #6B5B3D;
}

.cookie-btn.reject:hover {
    background-color: #3D3426;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .minimal-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .story-container {
        padding: 40px 20px;
    }

    .story-title {
        font-size: 36px;
    }

    .story-subtitle {
        font-size: 18px;
    }

    .inline-image-section {
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .contact-visual-section .image-wrapper {
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .story-content h2,
    .section-heading {
        font-size: 28px;
    }

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

    .footer-column {
        min-width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}