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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    background-color: #ffffff;
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.hero-minimal {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    background-color: #ffffff;
}

.hero-content-minimal {
    padding: 120px 60px 80px;
    max-width: 900px;
}

.hero-content-minimal h1 {
    font-size: 82px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    color: #666;
    max-width: 600px;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.intro-spacing {
    padding: 160px 60px;
    background-color: #f5f5f5;
}

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

.content-narrow h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 50px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.content-narrow p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.services-preview {
    padding: 100px 60px;
    background-color: #ffffff;
}

.services-grid-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card-minimal {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #fafafa;
}

.service-image-wrapper {
    width: 100%;
    height: 480px;
    background-color: #e0e0e0;
    margin-bottom: 35px;
    overflow: hidden;
}

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

.service-info {
    padding: 0 20px 40px;
}

.service-info h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.select-service-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.select-service-btn:hover {
    background-color: #333;
}

.story-section {
    padding: 140px 60px;
    background-color: #f5f5f5;
}

.story-layout {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 28px;
}

.story-image {
    flex: 1;
    background-color: #d8d8d8;
}

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

.form-section {
    padding: 140px 60px;
    background-color: #ffffff;
}

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

.form-container-minimal h2 {
    font-size: 54px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.7;
}

.contact-form-minimal {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    color: #4a4a4a;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #fafafa;
    color: #2c2c2c;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 20px;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

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

.additional-services {
    padding: 120px 60px;
    background-color: #f5f5f5;
}

.services-list-minimal {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.service-item-inline {
    border-bottom: 1px solid #d0d0d0;
    padding-bottom: 40px;
}

.service-item-inline h3 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-item-inline p {
    font-size: 17px;
    color: #666;
    margin-bottom: 18px;
}

.select-service-btn-inline {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 14px 36px;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service-btn-inline:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.craftsmanship-section {
    padding: 140px 60px;
    background-color: #ffffff;
}

.craftsmanship-content {
    display: flex;
    gap: 70px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.craftsmanship-content img {
    flex: 1;
    width: 50%;
    height: auto;
    object-fit: cover;
    background-color: #d8d8d8;
}

.craftsmanship-text {
    flex: 1;
}

.craftsmanship-text h2 {
    font-size: 44px;
    font-weight: 300;
    margin-bottom: 35px;
    color: #1a1a1a;
}

.craftsmanship-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 18px;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: "—";
    position: absolute;
    left: 0;
}

.cta-minimal {
    padding: 140px 60px;
    background-color: #1a1a1a;
    text-align: center;
}

.cta-minimal h2 {
    font-size: 56px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 45px;
}

.cta-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    border: 2px solid #ffffff;
    padding: 18px 50px;
    transition: all 0.3s;
}

.cta-link:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.footer-minimal {
    background-color: #f5f5f5;
    padding: 80px 60px 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 35px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #1a1a1a;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: #e8e8e8;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #555;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #d0d0d0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #1a1a1a;
    padding: 30px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #1a1a1a;
}

.cookie-btn.reject:hover {
    background-color: #d0d0d0;
}

.thanks-container {
    padding: 140px 60px;
    text-align: center;
    min-height: 60vh;
    background-color: #ffffff;
}

.thanks-container h1 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 35px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 20px;
    color: #666;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-service-info {
    font-size: 18px;
    color: #4a4a4a;
    margin-top: 40px;
    padding: 25px;
    background-color: #f5f5f5;
    display: inline-block;
}

.back-link {
    display: inline-block;
    margin-top: 50px;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.back-link:hover {
    color: #666;
}

@media (max-width: 1024px) {
    .hero-content-minimal h1 {
        font-size: 62px;
    }

    .story-layout,
    .craftsmanship-content {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .main-nav {
        padding: 30px;
    }

    .nav-links {
        gap: 25px;
    }

    .hero-content-minimal {
        padding: 80px 30px 50px;
    }

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

    .intro-spacing,
    .form-section,
    .story-section,
    .craftsmanship-section {
        padding: 80px 30px;
    }

    .content-narrow h2 {
        font-size: 36px;
    }
}