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

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2a2a2a;
    background-color: #fafafa;
}

.ad-notice {
    background-color: #f5f5f5;
    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: bold;
    letter-spacing: 2px;
    text-transform: lowercase;
}

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

.nav-links a {
    text-decoration: none;
    color: #2a2a2a;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

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

.hero-content {
    padding: 100px 60px 60px;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.2;
    font-weight: normal;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

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

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

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

.philosophy-section {
    padding: 120px 60px;
    background-color: #f5f5f5;
}

.philosophy-container {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-container h2 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: normal;
    line-height: 1.3;
}

.philosophy-container p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

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

.service-card {
    display: flex;
    margin-bottom: 100px;
    gap: 60px;
    align-items: center;
}

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

.service-image-wrapper {
    flex: 1;
    min-width: 400px;
    height: 500px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.service-info {
    flex: 1;
    padding: 40px;
}

.service-info h3 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: normal;
}

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

.price {
    display: block;
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: bold;
}

.select-service-btn {
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    padding: 18px 45px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

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

.form-section {
    padding: 120px 60px;
    background-color: #2a2a2a;
    color: #ffffff;
}

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

.form-container h2 {
    font-size: 48px;
    margin-bottom: 50px;
    font-weight: normal;
}

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

.contact-form input,
.contact-form textarea {
    padding: 20px;
    font-size: 16px;
    border: 1px solid #555;
    background-color: #3a3a3a;
    color: #ffffff;
    font-family: 'Georgia', serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.selected-service-display {
    padding: 20px;
    background-color: #3a3a3a;
    border: 1px solid #555;
}

.selected-service-display span {
    color: #ccc;
}

.selected-service-display strong {
    color: #ffffff;
}

.submit-btn {
    background-color: #ffffff;
    color: #2a2a2a;
    border: none;
    padding: 20px 50px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
    font-weight: bold;
}

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

.craftsmanship-section {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    background-color: #ffffff;
    align-items: center;
}

.craft-content {
    flex: 1;
}

.craft-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: normal;
}

.craft-content p {
    font-size: 20px;
    color: #666;
    line-height: 1.7;
}

.craft-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: normal;
}

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

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 40px;
}

.disclaimer p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    max-width: 900px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2a2a2a;
    padding: 30px 60px;
    display: none;
    z-index: 1000;
}

.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;
    margin: 0;
    font-size: 15px;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

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

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

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #2a2a2a;
}

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

.page-hero {
    padding: 100px 60px 60px;
    background-color: #f5f5f5;
}

.page-hero h1 {
    font-size: 64px;
    font-weight: normal;
    max-width: 900px;
}

.about-content {
    padding: 80px 60px;
    background-color: #ffffff;
}

.about-text-block {
    max-width: 800px;
    margin: 0 auto 80px;
}

.about-text-block h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: normal;
}

.about-text-block p {
    font-size: 20px;
    color: #666;
    margin-bottom: 25px;
}

.about-image-block {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 100px;
    height: 500px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.values-section {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 80px auto 0;
}

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: normal;
}

.value-item p {
    font-size: 18px;
    color: #666;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: normal;
}

.service-detail-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-detail-content li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.price-tag {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 25px;
    display: block;
}

.cta-link {
    display: inline-block;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #4a4a4a;
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
    height: 500px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.contact-page-content {
    padding: 60px 60px 100px;
    background-color: #ffffff;
}

.contact-info-block {
    max-width: 700px;
    margin: 0 auto 80px;
}

.contact-info-block h2 {
    font-size: 48px;
    margin-bottom: 50px;
    font-weight: normal;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: normal;
}

.contact-detail p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.contact-image-block {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 80px;
    height: 500px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.visit-info {
    max-width: 800px;
    margin: 0 auto 80px;
}

.visit-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: normal;
}

.visit-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.visit-info a {
    color: #2a2a2a;
    text-decoration: underline;
}

.directions-section {
    max-width: 800px;
    margin: 0 auto;
}

.directions-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: normal;
}

.directions-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.thanks-section {
    display: flex;
    min-height: 70vh;
    padding: 80px 60px;
    gap: 80px;
    background-color: #f5f5f5;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 56px;
    margin-bottom: 30px;
    font-weight: normal;
}

.thanks-content p {
    font-size: 20px;
    color: #666;
    margin-bottom: 20px;
}

.next-steps {
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: normal;
}

.next-steps ul {
    padding-left: 25px;
}

.next-steps li {
    font-size: 18px;
    color: #666;
    margin-bottom: 12px;
}

.back-home-btn {
    display: inline-block;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 18px 45px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

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

.thanks-image {
    flex: 1;
    height: 600px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.legal-page {
    padding: 60px 60px 100px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 52px;
    margin-bottom: 50px;
    font-weight: normal;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: normal;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: normal;
}

.legal-page p {
    font-size: 17px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.legal-page li {
    font-size: 17px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

    .service-card,
    .service-card:nth-child(even),
    .service-detail-card,
    .service-detail-card.reverse,
    .craftsmanship-section,
    .thanks-section {
        flex-direction: column;
    }

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

    .values-section {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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