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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fafafa;
}

.ad-disclosure {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #fff;
    position: sticky;
    top: 39px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    width: 45%;
    padding: 80px 0 80px 60px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-text-block {
    max-width: 520px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -1.5px;
}

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

.cta-primary {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #d4a574;
    transform: translateY(-2px);
}

.hero-image-diagonal {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    width: 62%;
    height: 92%;
    overflow: hidden;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
    background: #e8e8e8;
}

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

.intro-offset {
    display: flex;
    padding: 120px 60px;
    gap: 80px;
    align-items: center;
}

.intro-left-block {
    width: 48%;
    transform: translateX(-40px);
    background: #e8e8e8;
}

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

.intro-right-text {
    width: 52%;
    padding-left: 40px;
}

.intro-right-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

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

.services-asymmetric {
    padding: 100px 60px 120px;
    background: #f5f5f5;
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 70px;
    margin-left: 60px;
}

.services-header-offset h2 {
    font-size: 48px;
    margin-bottom: 18px;
    font-weight: 800;
    color: #1a1a1a;
}

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

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

.service-card {
    background: #fff;
    width: calc(33.333% - 30px);
    min-width: 320px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s;
    overflow: hidden;
}

.service-card.offset-top {
    transform: translateY(-30px);
}

.service-card.offset-bottom {
    transform: translateY(30px);
}

.service-card.offset-top-right {
    transform: translate(20px, -20px);
}

.service-card.offset-left {
    transform: translateX(-20px);
}

.service-card.offset-center {
    transform: translateY(-10px);
}

.service-card.offset-bottom-right {
    transform: translate(15px, 20px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #e0e0e0;
}

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

.service-card:hover .service-image-wrapper img {
    transform: scale(1.08);
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #d4a574;
    margin-bottom: 20px;
}

.btn-service-select {
    width: 100%;
    padding: 14px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-service-select.selected {
    background: #d4a574;
}

.booking-form-section {
    padding: 100px 60px;
    background: #fff;
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 10%;
    transform: translateX(60px);
}

.form-header-block {
    margin-bottom: 45px;
}

.form-header-block h2 {
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 800;
    color: #1a1a1a;
}

.form-header-block p {
    font-size: 17px;
    color: #5a5a5a;
}

#selected-service-display {
    font-weight: 600;
    color: #d4a574;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 18px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: #d4a574;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.philosophy-overlap {
    position: relative;
    height: 600px;
    margin: 80px 60px;
}

.philosophy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    overflow: hidden;
    background: #e8e8e8;
}

.philosophy-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-text-overlay {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    background: #1a1a1a;
    color: #fff;
    padding: 60px;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.3);
}

.philosophy-text-overlay h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
}

.philosophy-text-overlay p {
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.7;
    color: #d0d0d0;
}

.link-arrow {
    display: inline-block;
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: transform 0.3s;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.link-arrow::after {
    content: ' →';
}

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

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

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-block h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.footer-block h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-block a:hover {
    color: #d4a574;
}

.footer-block p {
    font-size: 14px;
    color: #d0d0d0;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    display: none;
}

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

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

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

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

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie {
    background: #d4a574;
    color: #fff;
}

.btn-cookie:hover {
    background: #c89560;
}

.btn-cookie-secondary {
    background: transparent;
    color: #d0d0d0;
    border: 2px solid #d0d0d0;
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

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

.thanks-content .service-info-box {
    background: #f5f5f5;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #d4a574;
}

.thanks-content .service-info-box strong {
    color: #1a1a1a;
}

.thanks-content a {
    display: inline-block;
    margin-top: 25px;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-content a:hover {
    background: #d4a574;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        width: 100%;
        padding: 60px 40px;
    }

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
        right: 0;
        top: 0;
    }

    .intro-offset {
        flex-direction: column;
        padding: 80px 40px;
    }

    .intro-left-block,
    .intro-right-text {
        width: 100%;
        transform: none;
        padding-left: 0;
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .philosophy-overlap {
        height: auto;
        margin: 40px 20px;
    }

    .philosophy-background {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .philosophy-text-overlay {
        position: relative;
        width: 100%;
        transform: none;
    }

    .footer-content-split {
        flex-wrap: wrap;
    }
}

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

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .service-card {
        width: 100%;
        transform: none !important;
    }

    .services-header-offset {
        margin-left: 0;
    }

    .form-container-asymmetric {
        transform: none;
        margin-left: 0;
    }

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

.page-header-asymmetric {
    padding: 100px 60px 60px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.header-content-left {
    max-width: 700px;
}

.header-content-left h1 {
    font-size: 64px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.1;
}

.header-content-left p {
    font-size: 20px;
    color: #5a5a5a;
}

.about-story-split {
    display: flex;
    padding: 100px 60px;
    gap: 70px;
    align-items: flex-start;
}

.story-text-block {
    width: 55%;
    padding-right: 40px;
}

.story-text-block h2 {
    font-size: 44px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.story-image-offset {
    width: 45%;
    transform: translateY(40px);
    background: #e8e8e8;
}

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

.values-section {
    background: #1a1a1a;
    padding: 100px 60px;
    color: #fff;
}

.values-container h2 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
}

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

.value-item {
    width: calc(50% - 20px);
    padding: 30px;
    background: rgba(255,255,255,0.05);
}

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

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

.team-section-overlap {
    position: relative;
    height: 650px;
    margin: 100px 60px;
}

.team-image-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    overflow: hidden;
    background: #e8e8e8;
}

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

.team-text-card {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    background: #fff;
    padding: 60px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
}

.team-text-card h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.approach-section {
    padding: 100px 60px;
    background: #f5f5f5;
}

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

.approach-content h2 {
    font-size: 44px;
    margin-bottom: 35px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

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

.location-section-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

.location-text {
    width: 48%;
}

.location-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.location-image {
    width: 52%;
    background: #e8e8e8;
}

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

.cta-section-bottom {
    padding: 100px 60px;
    background: #1a1a1a;
    text-align: center;
}

.cta-bottom-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
}

.cta-bottom-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #d0d0d0;
}

.services-detail-section {
    padding: 80px 60px;
}

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

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

.service-detail-image {
    width: 45%;
    background: #e8e8e8;
}

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

.service-detail-content {
    width: 55%;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.price-large {
    font-size: 42px;
    font-weight: 800;
    color: #d4a574;
    margin-bottom: 25px;
}

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

.btn-service-book {
    display: inline-block;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 15px;
}

.btn-service-book:hover {
    background: #d4a574;
    transform: translateY(-2px);
}

.booking-info-section {
    padding: 80px 60px;
    background: #f5f5f5;
}

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

.booking-info-content h2 {
    font-size: 44px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.contact-split-section {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
}

.contact-info-block {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-card {
    background: #f5f5f5;
    padding: 35px;
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.contact-visual-block {
    width: 50%;
    position: relative;
    background: #e8e8e8;
}

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

.contact-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26,26,26,0.92);
    padding: 40px;
    color: #fff;
}

.contact-overlay-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-overlay-text p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #d0d0d0;
}

.btn-contact-cta {
    display: inline-block;
    padding: 14px 35px;
    background: #d4a574;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-contact-cta:hover {
    background: #c89560;
}

.location-notes-section {
    padding: 80px 60px;
    background: #f5f5f5;
}

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

.location-notes-content h2 {
    font-size: 44px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

.notes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.note-item {
    width: calc(50% - 15px);
    background: #fff;
    padding: 30px;
}

.note-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.legal-page-section {
    padding: 80px 60px;
    background: #fff;
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c2c2c;
}

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

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

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

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

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

@media (max-width: 1024px) {
    .about-story-split,
    .location-section-asymmetric {
        flex-direction: column;
    }

    .story-text-block,
    .story-image-offset,
    .location-text,
    .location-image {
        width: 100%;
        transform: none;
        padding-right: 0;
    }

    .value-item {
        width: 100%;
    }

    .team-section-overlap {
        height: auto;
        margin: 40px 20px;
    }

    .team-image-background {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .team-text-card {
        position: relative;
        width: 100%;
        transform: none;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

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

    .contact-split-section {
        flex-direction: column;
    }

    .contact-info-block,
    .contact-visual-block {
        width: 100%;
    }

    .contact-visual-block {
        height: 400px;
    }

    .note-item {
        width: 100%;
    }
}