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

:root {
    --color-primary: #2c2420;
    --color-secondary: #8b7355;
    --color-accent: #d4a574;
    --color-bg-light: #f8f6f3;
    --color-bg-white: #ffffff;
    --color-text-dark: #1a1614;
    --color-text-medium: #5a524c;
    --color-text-light: #877d75;
    --color-border: #e6e0d9;
}

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

.ad-notice {
    background-color: var(--color-bg-light);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--color-text-medium);
    border-bottom: 1px solid var(--color-border);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-text-dark);
}

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

.nav-links a {
    color: var(--color-text-medium);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.hero-minimal {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-content-centered {
    text-align: center;
    padding: 80px 40px 60px;
    position: relative;
    z-index: 2;
}

.hero-minimal h1 {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-medium);
    max-width: 680px;
    margin: 0 auto;
    font-weight: 300;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--color-bg-light);
}

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

.narrative-intro {
    padding: 120px 40px;
    background-color: var(--color-bg-light);
}

.narrow-container {
    max-width: 720px;
    margin: 0 auto;
}

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

.centered-container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.opening-text {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--color-text-dark);
}

.narrative-intro p {
    margin-bottom: 24px;
    color: var(--color-text-medium);
}

.image-break {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--color-bg-light);
}

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

.problem-amplification {
    padding: 120px 40px;
    background-color: var(--color-bg-white);
}

.problem-amplification h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
}

.two-column-text {
    display: flex;
    gap: 60px;
}

.two-column-text .column {
    flex: 1;
}

.two-column-text p {
    margin-bottom: 20px;
    color: var(--color-text-medium);
}

.craft-showcase {
    padding: 120px 40px;
    background-color: var(--color-bg-light);
}

.showcase-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
}

.showcase-item {
    flex: 0 0 calc(33.333% - 32px);
    max-width: 380px;
}

.showcase-image-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: var(--color-bg-white);
}

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

.showcase-item h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--color-text-dark);
}

.showcase-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-medium);
}

.testimonials-inline {
    padding: 100px 40px;
    background-color: var(--color-bg-white);
}

.testimonials-inline blockquote {
    border-left: 3px solid var(--color-accent);
    padding-left: 32px;
    margin-bottom: 48px;
}

.testimonials-inline blockquote p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--color-text-dark);
}

.testimonials-inline cite {
    font-style: normal;
    font-size: 16px;
    color: var(--color-text-light);
}

.services-reveal {
    padding: 120px 40px;
    background-color: var(--color-bg-light);
}

.services-reveal h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 18px;
    color: var(--color-text-medium);
    margin-bottom: 80px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: var(--color-bg-white);
    padding: 48px 36px;
    flex: 0 0 calc(50% - 20px);
    max-width: 460px;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--color-text-dark);
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-medium);
    margin-bottom: 24px;
}

.service-price {
    font-size: 32px;
    font-weight: 300;
    color: var(--color-secondary);
    margin-bottom: 24px;
}

.select-service-btn {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

.form-section {
    padding: 120px 40px;
    background-color: var(--color-bg-white);
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: var(--color-text-medium);
    margin-bottom: 48px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-white);
    font-family: inherit;
    color: var(--color-text-dark);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
    margin-top: 16px;
}

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

.disclaimer-section {
    padding: 80px 40px;
    background-color: var(--color-bg-light);
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-medium);
}

.minimal-footer {
    background-color: var(--color-primary);
    color: var(--color-bg-light);
    padding: 60px 40px 32px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--color-bg-white);
}

.footer-section p {
    font-size: 14px;
    color: var(--color-text-light);
}

.footer-section a {
    display: block;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-white);
    border-top: 2px solid var(--color-border);
    padding: 24px 40px;
    z-index: 1000;
    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: 40px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: var(--color-text-medium);
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 12px 28px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

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

.cookie-btn.reject {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.cookie-btn.reject:hover {
    background-color: var(--color-border);
}

.page-hero-minimal {
    padding: 100px 40px 80px;
    background-color: var(--color-bg-light);
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 16px;
}

.hero-subtext {
    font-size: 20px;
    color: var(--color-text-medium);
}

.about-narrative {
    padding: 80px 40px 120px;
}

.about-narrative img {
    width: 100%;
    height: auto;
    margin: 48px 0;
    background-color: var(--color-bg-light);
}

.about-narrative h2 {
    font-size: 36px;
    font-weight: 300;
    margin: 60px 0 24px;
    color: var(--color-text-dark);
}

.about-narrative p {
    margin-bottom: 20px;
    color: var(--color-text-medium);
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.7;
    color: var(--color-text-dark);
    margin-bottom: 48px;
}

.team-simple {
    padding: 100px 40px;
    background-color: var(--color-bg-light);
}

.team-simple h2 {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-top: 60px;
}

.team-member {
    flex: 0 0 calc(33.333% - 32px);
    text-align: center;
}

.team-member h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
}

.team-role {
    font-size: 16px;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-medium);
}

.values-section {
    padding: 100px 40px;
    background-color: var(--color-bg-white);
}

.values-section h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
}

.value-item {
    margin-bottom: 48px;
}

.value-item h3 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.value-item p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text-medium);
}

.services-detailed {
    padding: 80px 40px 120px;
}

.service-detail-block {
    display: flex;
    gap: 80px;
    margin-bottom: 120px;
    align-items: center;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: var(--color-bg-light);
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

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

.service-detail-content h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 24px;
}

.service-detail-content p {
    margin-bottom: 20px;
    color: var(--color-text-medium);
}

.service-includes {
    margin: 32px 0;
    padding-left: 20px;
}

.service-includes li {
    margin-bottom: 10px;
    color: var(--color-text-medium);
}

.service-pricing-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 32px 0;
}

.price-label {
    font-size: 16px;
    color: var(--color-text-medium);
}

.price-amount {
    font-size: 42px;
    font-weight: 300;
    color: var(--color-secondary);
}

.service-cta-btn {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    text-decoration: none;
    padding: 14px 36px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

.service-process {
    padding: 100px 40px;
    background-color: var(--color-bg-light);
}

.service-process h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.process-step {
    flex: 0 0 calc(50% - 20px);
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-medium);
}

.contact-content {
    padding: 80px 40px;
}

.contact-layout {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 24px;
}

.contact-info-block > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-medium);
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-medium);
}

.email-display {
    color: var(--color-text-dark);
}

.note-text {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 8px;
}

.contact-image-block {
    flex: 0 0 40%;
    background-color: var(--color-bg-light);
}

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

.visit-info {
    padding: 100px 40px;
    background-color: var(--color-bg-light);
}

.visit-info h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 32px;
}

.visit-info p {
    margin-bottom: 20px;
    color: var(--color-text-medium);
}

.directions-section {
    padding: 100px 40px;
    background-color: var(--color-bg-white);
}

.directions-section h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 48px;
    text-align: center;
}

.directions-grid {
    display: flex;
    gap: 40px;
}

.direction-option {
    flex: 1;
    padding: 32px;
    background-color: var(--color-bg-light);
}

.direction-option h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 16px;
}

.direction-option p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-medium);
}

.thanks-section {
    padding: 120px 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 720px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-text-medium);
    margin-bottom: 32px;
}

.thanks-details {
    background-color: var(--color-bg-light);
    padding: 24px;
    margin-bottom: 32px;
    font-size: 16px;
    color: var(--color-text-dark);
}

.thanks-subtext {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 48px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.thanks-btn {
    padding: 14px 32px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

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

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

.thanks-btn.secondary {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

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

.what-next {
    padding: 100px 40px;
    background-color: var(--color-bg-light);
}

.what-next h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
}

.next-steps {
    display: flex;
    gap: 48px;
}

.next-step {
    flex: 1;
    text-align: center;
}

.next-step h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.next-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-medium);
}

.legal-page {
    padding: 80px 40px 120px;
}

.legal-container {
    max-width: 860px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 16px;
}

.last-updated {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 48px;
}

.legal-container h2 {
    font-size: 32px;
    font-weight: 400;
    margin: 48px 0 20px;
    color: var(--color-text-dark);
}

.legal-container h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 32px 0 16px;
    color: var(--color-text-dark);
}

.legal-container p {
    margin-bottom: 16px;
    color: var(--color-text-medium);
    line-height: 1.7;
}

.legal-container ul {
    margin: 20px 0 20px 24px;
}

.legal-container ul li {
    margin-bottom: 10px;
    color: var(--color-text-medium);
    line-height: 1.6;
}

.legal-container a {
    color: var(--color-secondary);
    text-decoration: underline;
}

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

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

    .nav-links {
        gap: 24px;
    }

    .hero-minimal h1 {
        font-size: 42px;
    }

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

    .two-column-text {
        flex-direction: column;
        gap: 24px;
    }

    .showcase-grid {
        flex-direction: column;
    }

    .showcase-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .service-cards {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

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

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

    .team-grid {
        flex-direction: column;
    }

    .team-member {
        flex: 0 0 100%;
    }

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-image {
        flex: 0 0 100%;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-step {
        flex: 0 0 100%;
    }

    .contact-layout {
        flex-direction: column;
        gap: 48px;
    }

    .contact-image-block {
        flex: 0 0 100%;
        height: 400px;
    }

    .directions-grid {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .next-steps {
        flex-direction: column;
        gap: 32px;
    }
}