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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafaf8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 12px;
    color: #999;
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background-color: #f5f5f5;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    position: relative;
    margin: 0 60px;
    margin-top: 40px;
}

.hero-text-block {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-text-block p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #6f5a42;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: 80px;
    background-color: #e8e0d5;
}

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

.intro-asymmetric {
    display: flex;
    margin: 120px 60px;
    gap: 80px;
}

.intro-left-panel {
    flex: 0 0 38%;
    background-color: #d9d1c7;
}

.intro-left-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

.services-grid-offset {
    margin: 100px 60px;
}

.section-header-left {
    margin-bottom: 60px;
    max-width: 600px;
}

.section-header-left h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 400;
}

.section-header-left p {
    font-size: 18px;
    color: #666;
}

.services-cards-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.card-1 {
    flex: 0 0 calc(60% - 20px);
    margin-left: 0;
}

.service-card.card-2 {
    flex: 0 0 calc(40% - 20px);
    margin-top: 60px;
}

.service-card.card-3 {
    flex: 0 0 calc(45% - 20px);
    margin-left: 5%;
}

.service-card.card-4 {
    flex: 0 0 calc(50% - 20px);
    margin-top: -40px;
}

.service-card.card-5 {
    flex: 0 0 calc(55% - 20px);
    margin-left: auto;
    margin-right: 0;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px 25px;
    font-weight: 500;
}

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

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

.btn-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px 25px;
    padding: 14px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.process-flow {
    background-color: #f5f1ec;
    padding: 100px 60px;
    margin: 80px 0;
}

.process-content-center {
    max-width: 900px;
    margin: 0 auto;
}

.process-content-center h2 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 400;
}

.process-steps-offset {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.step {
    display: flex;
    align-items: center;
    gap: 40px;
}

.step-right {
    justify-content: flex-start;
}

.step-left {
    justify-content: flex-end;
}

.step-number {
    font-size: 72px;
    font-weight: 700;
    color: #d4a574;
    opacity: 0.3;
    flex-shrink: 0;
}

.step-text {
    max-width: 500px;
}

.step-text h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 500;
}

.step-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.testimonial-overlay {
    position: relative;
    height: 500px;
    margin: 80px 0;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c9c0b3;
}

.testimonial-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.testimonial-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
}

.testimonial-content blockquote {
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
    color: #1a1a1a;
}

.testimonial-content cite {
    display: block;
    margin-top: 30px;
    font-size: 18px;
    font-style: normal;
    color: #4a4a4a;
}

.form-section-offset {
    margin: 120px 60px;
    display: flex;
    justify-content: flex-end;
}

.form-wrapper-asymmetric {
    width: 70%;
    background-color: #ffffff;
    padding: 60px;
    border: 1px solid #e0e0e0;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 400;
}

.form-intro p {
    font-size: 17px;
    color: #666;
}

.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: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Georgia', serif;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.trust-section {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 80px 60px;
}

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

.trust-left {
    flex: 1;
}

.trust-left h2 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 400;
}

.trust-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #d0d0d0;
}

.trust-stats {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #d4a574;
}

.stat-label {
    font-size: 16px;
    color: #b0b0b0;
    margin-top: 8px;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #b0b0b0;
    padding: 60px 60px 30px 60px;
}

.footer-columns {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.about-hero {
    padding: 100px 60px;
    background-color: #f5f1ec;
}

.about-text-offset {
    max-width: 700px;
    margin-left: 10%;
}

.about-text-offset h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-text-offset p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
}

.about-story-split {
    display: flex;
    margin: 100px 60px;
    gap: 70px;
}

.story-image-left {
    flex: 0 0 42%;
    background-color: #e8e0d5;
}

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

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

.story-content-right h2 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 400;
}

.story-content-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.philosophy-section {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 100px 60px;
}

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

.philosophy-content h2 {
    font-size: 46px;
    margin-bottom: 60px;
    font-weight: 400;
    text-align: center;
}

.philosophy-blocks {
    display: flex;
    gap: 50px;
}

.philosophy-item {
    flex: 1;
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d4a574;
    font-weight: 500;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #d0d0d0;
}

.team-section-offset {
    margin: 100px 60px;
}

.team-section-offset h2 {
    font-size: 46px;
    margin-bottom: 60px;
    font-weight: 400;
    text-align: center;
}

.team-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background-color: #f5f1ec;
    padding: 40px;
}

.member-info h3 {
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 500;
}

.member-role {
    font-size: 15px;
    color: #8b7355;
    margin-bottom: 20px;
    font-weight: 600;
}

.member-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.workshop-visual {
    position: relative;
    height: 600px;
    margin: 80px 0;
    background-color: #c9c0b3;
}

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

.workshop-overlay {
    position: absolute;
    bottom: 60px;
    right: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    max-width: 500px;
}

.workshop-overlay h2 {
    font-size: 34px;
    margin-bottom: 15px;
    font-weight: 400;
}

.workshop-overlay p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.values-asymmetric {
    display: flex;
    gap: 100px;
    margin: 100px 60px;
}

.values-left {
    flex: 0 0 35%;
}

.values-left h2 {
    font-size: 44px;
    font-weight: 400;
}

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

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

.services-hero-offset {
    padding: 100px 60px;
    background-color: #f5f1ec;
    max-width: 800px;
    margin-left: auto;
    margin-right: 60px;
}

.services-hero-offset h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 400;
}

.services-hero-offset p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
}

.services-detailed {
    margin: 80px 60px;
}

.service-detail-block {
    display: flex;
    gap: 70px;
    margin-bottom: 100px;
}

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

.service-detail-image {
    flex: 0 0 45%;
    background-color: #e8e0d5;
}

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

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

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

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

.service-price {
    font-size: 28px;
    font-weight: 600;
    color: #8b7355;
    margin: 30px 0;
}

.btn-service-detail {
    padding: 14px 35px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.additional-services {
    background-color: #f5f1ec;
    padding: 80px 60px;
    margin: 80px 0;
}

.additional-services h2 {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 400;
    text-align: center;
}

.additional-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-item {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border: 1px solid #e0e0e0;
}

.additional-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 500;
}

.additional-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.price-small {
    font-size: 20px;
    font-weight: 600;
    color: #8b7355;
}

.cta-services {
    text-align: center;
    padding: 100px 60px;
}

.cta-services h2 {
    font-size: 46px;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-services p {
    font-size: 19px;
    margin-bottom: 40px;
    color: #555;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #6f5a42;
}

.contact-hero {
    padding: 100px 60px;
    background-color: #f5f1ec;
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 400;
}

.contact-hero p {
    font-size: 20px;
    color: #555;
}

.contact-main-asymmetric {
    display: flex;
    gap: 80px;
    margin: 100px 60px;
}

.contact-info-block {
    flex: 0 0 45%;
}

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

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #8b7355;
    font-weight: 600;
}

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

.contact-note {
    background-color: #f5f1ec;
    padding: 30px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e8e0d5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-box {
    padding: 40px;
    text-align: center;
}

.map-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-process {
    background-color: #f5f1ec;
    padding: 80px 60px;
    margin: 80px 0;
}

.contact-process h2 {
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 400;
    text-align: center;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.timeline-item {
    display: flex;
    gap: 40px;
}

.timeline-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #8b7355;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 500;
}

.timeline-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    padding: 100px 60px;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #8b7355;
}

.thanks-content > p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.service-confirmation {
    background-color: #f5f1ec;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #8b7355;
}

.service-confirmation p {
    font-size: 17px;
    color: #2c2c2c;
}

.thanks-info {
    text-align: left;
    margin: 60px 0;
}

.thanks-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 400;
}

.thanks-info ol {
    font-size: 17px;
    line-height: 2;
    color: #4a4a4a;
    padding-left: 25px;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid #2c2c2c;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 60px;
}

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 40px;
    font-weight: 400;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 500;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 500;
}

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

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

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

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

.legal-content a:hover {
    color: #6f5a42;
}

.legal-content em {
    display: block;
    margin-top: 50px;
    font-size: 14px;
    color: #888;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        margin: 0 30px;
    }

    .hero-text-block {
        flex: 1;
        padding-right: 0;
        padding-bottom: 40px;
    }

    .hero-image-offset {
        margin-top: 0;
        min-height: 400px;
    }

    .intro-asymmetric,
    .about-story-split,
    .service-detail-block {
        flex-direction: column;
        margin: 60px 30px;
    }

    .services-cards-staggered {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
        margin: 0;
    }

    .nav-asymmetric {
        padding: 20px 30px;
    }

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

    .trust-content-split,
    .values-asymmetric,
    .contact-main-asymmetric {
        flex-direction: column;
        gap: 50px;
    }

    .philosophy-blocks,
    .team-grid,
    .additional-grid {
        flex-direction: column;
    }

    .form-wrapper-asymmetric {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-right {
        flex-wrap: wrap;
        gap: 15px;
    }

    .ad-notice {
        width: 100%;
        text-align: center;
    }

    .hero-text-block h1 {
        font-size: 38px;
    }

    .about-text-offset {
        margin-left: 0;
    }

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