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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafaf8;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

.header-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(250, 250, 248, 0.95);
    z-index: 1000;
    border-bottom: 1px solid #e5e5e0;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

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

.nav-links a {
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 0.02em;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-minimal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
}

.hero-minimal {
    margin-top: 75px;
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #e8e8e3;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-content-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #1a1a1a;
    background-color: rgba(250, 250, 248, 0.75);
    padding: 4rem 3rem;
    max-width: 700px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.intro-section {
    padding: 8rem 0;
    background-color: #fafaf8;
}

.intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.3;
}

.intro-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.featured-work {
    padding: 6rem 0;
    background-color: #fff;
}

.work-grid-minimal {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.work-item {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.work-item.reverse {
    flex-direction: row-reverse;
}

.work-image {
    flex: 1;
    background-color: #f0f0ed;
}

.work-image img {
    width: 100%;
    height: 100%;
}

.work-text {
    flex: 1;
}

.work-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.work-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    font-size: 1.1rem;
    color: #2a2a2a;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-top: 1rem;
}

.philosophy-section {
    padding: 8rem 0;
    background-color: #f5f5f2;
}

.philosophy-quote {
    font-size: 1.8rem;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    color: #3a3a3a;
    font-weight: 300;
}

.services-preview {
    padding: 8rem 0;
    background-color: #fafaf8;
}

.section-heading {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 5rem;
    font-weight: 400;
}

.services-list-minimal {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card-minimal {
    flex: 1;
    min-width: 320px;
    max-width: 360px;
    background-color: #fff;
    padding: 0;
}

.service-card-minimal img {
    width: 100%;
    height: 240px;
    margin-bottom: 1.5rem;
    background-color: #f0f0ed;
}

.service-card-minimal h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
    font-weight: 400;
}

.service-card-minimal p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a5a5a;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.service-card-minimal .price-tag {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.contact-form-section {
    padding: 8rem 0;
    background-color: #fff;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: #3a3a3a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    border: 1px solid #d5d5d0;
    background-color: #fafaf8;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a2a2a;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #4a4a4a;
}

.footer-minimal {
    background-color: #2a2a2a;
    color: #d5d5d0;
    padding: 5rem 0 2rem 0;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #fff;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b5b5b0;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: #b5b5b0;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-disclaimer {
    border-top: 1px solid #4a4a4a;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #888;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #4a4a4a;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(42, 42, 42, 0.98);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    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 {
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-family: 'Georgia', serif;
    border: none;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #fff;
    color: #2a2a2a;
}

.btn-accept:hover {
    background-color: #e5e5e0;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.page-hero-minimal {
    margin-top: 75px;
    padding: 8rem 0 4rem 0;
    background-color: #fafaf8;
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
}

.hero-subtitle-page {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-top: 1.5rem;
    font-weight: 300;
}

.about-intro {
    padding: 6rem 0;
    background-color: #fff;
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.about-image-section {
    padding: 0;
}

.about-image-section img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    background-color: #e8e8e3;
}

.values-section {
    padding: 8rem 0;
    background-color: #fafaf8;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 400;
}

.value-item {
    margin-bottom: 3.5rem;
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.team-philosophy {
    padding: 8rem 0;
    background-color: #fff;
}

.approach-section {
    padding: 8rem 0;
    background-color: #f5f5f2;
}

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.cta-section-minimal {
    padding: 8rem 0;
    background-color: #2a2a2a;
    color: #fff;
    text-align: center;
}

.cta-section-minimal h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.cta-section-minimal p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #d5d5d0;
}

.btn-primary-minimal {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: #fff;
    color: #2a2a2a;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
}

.btn-primary-minimal:hover {
    background-color: #e5e5e0;
}

.services-detailed {
    padding: 6rem 0;
    background-color: #fafaf8;
}

.service-block {
    display: flex;
    gap: 5rem;
    margin-bottom: 8rem;
    align-items: flex-start;
}

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

.service-visual {
    flex: 1;
    background-color: #e8e8e3;
}

.service-visual img {
    width: 100%;
    height: 100%;
}

.service-detail {
    flex: 1;
}

.service-detail h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

.service-detail p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 1rem;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0 1rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid #d5d5d0;
}

.price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2a2a2a;
}

.service-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.service-inquiry-section {
    padding: 8rem 0;
    background-color: #fff;
}

.service-inquiry-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.service-inquiry-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
}

.contact-info-section {
    padding: 6rem 0;
    background-color: #fff;
}

.contact-details {
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.contact-block {
    flex: 1;
    max-width: 300px;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 1rem;
}

.location-context {
    padding: 6rem 0;
    background-color: #f5f5f2;
}

.location-context h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.location-context p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.inquiry-expectations {
    padding: 6rem 0;
    background-color: #fafaf8;
}

.inquiry-expectations h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.inquiry-expectations p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.thanks-section {
    margin-top: 75px;
    padding: 8rem 0;
    background-color: #fafaf8;
    text-align: center;
}

.thanks-section h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-lead {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

.link-text {
    font-size: 1rem;
    color: #5a5a5a;
    text-decoration: underline;
}

.next-steps-section {
    padding: 6rem 0;
    background-color: #fff;
}

.next-steps-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
}

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

.timeline-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2a2a2a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 400;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.legal-page {
    margin-top: 75px;
    padding: 6rem 0;
    background-color: #fafaf8;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.legal-updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.7rem;
    font-weight: 400;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0.7rem;
}

.legal-content a {
    color: #2a2a2a;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .nav-minimal {
        padding: 1.2rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .work-item {
        flex-direction: column;
        gap: 2rem;
    }

    .work-item.reverse {
        flex-direction: column;
    }

    .service-block {
        flex-direction: column;
        gap: 3rem;
    }

    .service-block.reverse {
        flex-direction: column;
    }

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

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

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

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

    .hero-minimal {
        height: 70vh;
    }

    .hero-content-overlay {
        padding: 2.5rem 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .services-list-minimal {
        flex-direction: column;
    }

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