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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fefefe;
}

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

.main-nav {
    padding: 30px 0;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #f0f0f0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.hero-minimal {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.hero-content {
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 24px;
    color: #666;
    font-weight: 300;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    background: #f5f5f5;
    overflow: hidden;
}

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

.intro-section {
    padding: 150px 40px;
    background: #fafafa;
}

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

.content-narrow h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.content-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.services-preview {
    padding: 150px 40px;
}

.content-wide {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 350px;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 400px;
    background: #f0f0f0;
    margin-bottom: 30px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

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

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

.cta-primary {
    padding: 16px 40px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary:hover {
    background: #333;
}

.craftsmanship-section {
    padding: 150px 40px;
    background: #f8f8f8;
}

.content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

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

.split-image {
    flex: 1;
    height: 500px;
    background: #e0e0e0;
    overflow: hidden;
}

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

.cta-centered {
    padding: 200px 40px;
    text-align: center;
}

.cta-centered h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-centered p {
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

.cta-large {
    padding: 24px 60px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-large:hover {
    background: #333;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.modal-content {
    background: #fff;
    margin: 80px auto;
    padding: 60px;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 32px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #1a1a1a;
}

.modal-content h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    font-size: 16px;
    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;
}

.cta-submit {
    width: 100%;
    padding: 20px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-submit:hover {
    background: #333;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 13px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 20px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 30px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.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: #4a4a4a;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

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

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

.cookie-reject {
    background: #f0f0f0;
    color: #666;
}

.cookie-reject:hover {
    background: #e0e0e0;
}

.page-header {
    padding: 150px 40px 80px;
    background: #fafafa;
}

.header-subtitle {
    font-size: 20px;
    color: #666;
    margin-top: 20px;
}

.about-intro {
    padding: 150px 40px;
}

.values-section {
    padding: 150px 40px;
    background: #f8f8f8;
}

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

.value-item h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.value-item p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.workshop-section {
    padding: 150px 40px;
}

.workshop-image-large {
    width: 100%;
    height: 600px;
    background: #e0e0e0;
    margin-bottom: 60px;
    overflow: hidden;
}

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

.workshop-text {
    max-width: 700px;
}

.workshop-text h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.workshop-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.services-detail {
    padding: 100px 40px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 120px;
    align-items: flex-start;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-card .service-image {
    flex: 1;
    min-width: 400px;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

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

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    font-size: 15px;
    color: #666;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-note {
    padding: 100px 40px;
    background: #fafafa;
}

.pricing-note h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.pricing-note p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.info-block {
    margin-bottom: 50px;
}

.info-block h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

.contact-image {
    flex: 1;
    height: 700px;
    background: #e0e0e0;
    overflow: hidden;
}

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

.directions-section {
    padding: 100px 40px;
    background: #f8f8f8;
}

.directions-section h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.directions-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-section {
    padding: 150px 40px;
    min-height: 70vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.thanks-message {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.6;
}

.service-confirmation {
    background: #f8f8f8;
    padding: 30px;
    margin-bottom: 80px;
    font-size: 16px;
}

.service-confirmation strong {
    font-weight: 600;
}

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

.next-steps h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -1px;
}

.step-item {
    margin-bottom: 40px;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

.cta-secondary {
    padding: 16px 40px;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

.legal-content {
    padding: 100px 40px;
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

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

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

.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

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

.last-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .content-wide,
    .content-split,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .service-detail-card .service-image {
        min-width: 100%;
    }

    .nav-links {
        gap: 20px;
    }

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

    .cookie-content {
        flex-direction: column;
    }

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

    .contact-image {
        height: 400px;
    }
}