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

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
}

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

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    background-color: #fff;
}

.hero-content-offset {
    width: 45%;
    padding: 120px 8% 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-offset h1 {
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-content-offset p {
    font-size: 19px;
    color: #5a5a5a;
    max-width: 480px;
}

.hero-image-diagonal {
    width: 55%;
    position: relative;
    overflow: hidden;
    background-color: #e8e2d8;
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.intro-offset {
    display: flex;
    padding: 100px 8%;
    gap: 80px;
    background-color: #f8f6f3;
}

.intro-text-block {
    width: 58%;
}

.intro-text-block h2 {
    font-size: 42px;
    margin-bottom: 35px;
    font-weight: 400;
    color: #2a2a2a;
}

.intro-text-block p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #4a4a4a;
}

.intro-visual-element {
    width: 38%;
    background-color: #d8cfc0;
}

.intro-visual-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-creative-layout {
    padding: 120px 8% 100px;
    background-color: #fff;
}

.section-header-rotated {
    margin-bottom: 60px;
}

.section-header-rotated h2 {
    font-size: 48px;
    font-weight: 400;
    color: #1a1a1a;
}

.services-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.service-card {
    background-color: #fafafa;
    overflow: hidden;
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8e2d8;
}

.service-card h3 {
    font-size: 26px;
    margin: 28px 30px 18px;
    font-weight: 400;
    color: #2a2a2a;
}

.service-card p {
    font-size: 16px;
    margin: 0 30px 20px;
    color: #5a5a5a;
    line-height: 1.6;
}

.price-tag {
    font-size: 20px;
    font-weight: 600;
    color: #8b7355;
    margin: 0 30px 25px;
}

.service-select-btn {
    background-color: #8b7355;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    margin: 0 30px 30px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

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

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 40px;
}

.card-offset-3 {
    margin-top: 20px;
}

.card-offset-4 {
    margin-top: 60px;
}

.card-offset-5 {
    margin-top: 30px;
}

.form-section-diagonal {
    padding: 100px 8%;
    background: linear-gradient(135deg, #e8e2d8 0%, #d8cfc0 100%);
}

.form-container-asymmetric {
    max-width: 600px;
    margin-left: 10%;
}

.form-container-asymmetric h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.form-container-asymmetric > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #4a4a4a;
}

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

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

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    color: #2a2a2a;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #c0b5a5;
    background-color: #fff;
    font-family: inherit;
    color: #2a2a2a;
}

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

.submit-btn {
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s;
    font-family: inherit;
}

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

.philosophy-block {
    padding: 100px 8%;
    background-color: #fff;
}

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

.philosophy-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #4a4a4a;
}

.footer-asymmetric {
    display: flex;
    gap: 60px;
    padding: 80px 8% 60px;
    background-color: #2a2a2a;
    color: #d0d0d0;
}

.footer-column {
    flex: 1;
}

.footer-main {
    flex: 1.5;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 400;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 500;
}

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

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

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

.disclaimer-footer {
    margin-top: 20px;
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px 8%;
    display: none;
    z-index: 1000;
}

.cookie-banner.show {
    display: block;
}

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

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

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

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

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

.cookie-btn.accept {
    background-color: #8b7355;
    color: #fff;
}

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

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

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

.about-hero-offset {
    display: flex;
    padding: 100px 8%;
    gap: 60px;
    background-color: #fff;
    align-items: center;
}

.about-text-primary {
    width: 45%;
}

.about-text-primary h1 {
    font-size: 52px;
    margin-bottom: 28px;
    font-weight: 400;
    color: #1a1a1a;
}

.about-text-primary p {
    font-size: 19px;
    color: #5a5a5a;
}

.about-image-main {
    width: 55%;
    background-color: #e8e2d8;
}

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

.about-story-asymmetric {
    display: flex;
    padding: 100px 8%;
    gap: 70px;
    background-color: #f8f6f3;
    align-items: center;
}

.story-block-left {
    width: 52%;
}

.story-block-left h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 400;
    color: #2a2a2a;
}

.story-block-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.story-image-right {
    width: 42%;
    background-color: #d8cfc0;
}

.story-image-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-section-creative {
    padding: 100px 8%;
    background-color: #fff;
}

.team-section-creative h2 {
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 400;
    color: #1a1a1a;
}

.team-layout-irregular {
    display: flex;
    gap: 50px;
}

.team-member {
    flex: 1;
    background-color: #fafafa;
    padding: 35px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 400;
    color: #2a2a2a;
}

.team-member .role {
    font-size: 15px;
    color: #8b7355;
    margin-bottom: 18px;
    font-weight: 500;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a5a;
}

.member-offset-1 {
    margin-top: 0;
}

.member-offset-2 {
    margin-top: 40px;
}

.member-offset-3 {
    margin-top: 20px;
}

.values-diagonal {
    padding: 100px 8%;
    background: linear-gradient(135deg, #e8e2d8 0%, #d8cfc0 100%);
}

.values-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 400;
    color: #1a1a1a;
}

.values-list-asymmetric {
    display: flex;
    gap: 45px;
}

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #2a2a2a;
}

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

.workshop-space {
    padding: 100px 8%;
    background-color: #fff;
}

.space-description {
    max-width: 800px;
}

.space-description h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
    color: #1a1a1a;
}

.space-description p {
    font-size: 17px;
    margin-bottom: 22px;
    color: #4a4a4a;
}

.services-intro-offset {
    padding: 100px 8% 60px;
    background-color: #fff;
    max-width: 900px;
}

.services-intro-offset h1 {
    font-size: 52px;
    margin-bottom: 28px;
    font-weight: 400;
    color: #1a1a1a;
}

.services-intro-offset p {
    font-size: 18px;
    color: #5a5a5a;
}

.service-detail-asymmetric {
    padding: 80px 8%;
    background-color: #f8f6f3;
}

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

.detail-image {
    width: 45%;
    background-color: #d8cfc0;
}

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

.detail-text {
    width: 50%;
}

.detail-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #2a2a2a;
}

.detail-text p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.price-display {
    font-size: 22px;
    font-weight: 600;
    color: #8b7355;
    margin-top: 25px;
}

.block-offset-1 {
    margin-top: 0;
}

.block-offset-2 {
    margin-top: 40px;
    flex-direction: row-reverse;
}

.block-offset-3 {
    margin-top: 20px;
}

.block-offset-4 {
    margin-top: 50px;
    flex-direction: row-reverse;
}

.block-offset-5 {
    margin-top: 30px;
}

.process-explanation {
    padding: 100px 8%;
    background-color: #fff;
}

.process-explanation h2 {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 400;
    color: #1a1a1a;
}

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

.step-item {
    flex: 1;
    background-color: #fafafa;
    padding: 30px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2a2a2a;
    font-weight: 500;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a5a;
}

.step-pos-1 {
    margin-top: 0;
}

.step-pos-2 {
    margin-top: 20px;
}

.step-pos-3 {
    margin-top: 40px;
}

.step-pos-4 {
    margin-top: 15px;
}

.contact-layout-diagonal {
    display: flex;
    padding: 100px 8%;
    gap: 80px;
    background-color: #fff;
}

.contact-info-block {
    width: 55%;
}

.contact-info-block h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #1a1a1a;
}

.contact-info-block > p {
    font-size: 17px;
    margin-bottom: 50px;
    color: #5a5a5a;
}

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

.detail-group h2 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #2a2a2a;
}

.detail-group p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-visual-offset {
    width: 40%;
    background-color: #e8e2d8;
}

.contact-visual-offset img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.location-info {
    padding: 80px 8%;
    background-color: #f8f6f3;
}

.location-info h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 400;
    color: #1a1a1a;
}

.location-description p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    max-width: 800px;
}

.thanks-container {
    display: flex;
    padding: 120px 8%;
    gap: 80px;
    min-height: 70vh;
    align-items: center;
    background-color: #fff;
}

.thanks-content-offset {
    width: 55%;
}

.thanks-content-offset h1 {
    font-size: 48px;
    margin-bottom: 28px;
    font-weight: 400;
    color: #1a1a1a;
}

.thanks-content-offset p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a5a5a;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    font-size: 16px;
    text-decoration: none;
    font-family: inherit;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #8b7355;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #6d5a43;
}

.btn-secondary {
    background-color: transparent;
    color: #4a4a4a;
    border: 2px solid #8b7355;
}

.btn-secondary:hover {
    background-color: #f8f6f3;
}

.thanks-visual {
    width: 40%;
    background-color: #e8e2d8;
}

.thanks-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.legal-content {
    padding: 100px 8%;
    max-width: 1100px;
    background-color: #fff;
}

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 400;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 18px;
    font-weight: 500;
    color: #2a2a2a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #2a2a2a;
}

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

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

@media (max-width: 1024px) {
    .hero-asymmetric,
    .intro-offset,
    .about-hero-offset,
    .about-story-asymmetric,
    .detail-block,
    .contact-layout-diagonal,
    .thanks-container {
        flex-direction: column;
    }

    .hero-content-offset,
    .hero-image-diagonal,
    .intro-text-block,
    .intro-visual-element,
    .about-text-primary,
    .about-image-main,
    .story-block-left,
    .story-image-right,
    .detail-image,
    .detail-text,
    .contact-info-block,
    .contact-visual-offset,
    .thanks-content-offset,
    .thanks-visual {
        width: 100%;
    }

    .service-card {
        width: 100%;
    }

    .team-layout-irregular,
    .values-list-asymmetric,
    .process-steps-asymmetric {
        flex-direction: column;
    }

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

    .footer-asymmetric {
        flex-wrap: wrap;
    }
}