* {
    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: #e0e0e0;
    background-color: #0f0f0f;
}

.ad-disclosure {
    background-color: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 8px;
    font-size: 0.75rem;
    border-bottom: 1px solid #333;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background-color: #151515;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

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

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

.hero-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    padding-left: 8%;
    max-width: 600px;
}

.hero-title-large {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #bbb;
    margin-bottom: 35px;
}

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

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

.intro-offset {
    display: flex;
    padding: 100px 6%;
    gap: 60px;
    align-items: center;
}

.intro-text-block {
    flex: 1;
    padding-left: 8%;
}

.intro-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #fff;
}

.intro-text-block p {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: #ccc;
    line-height: 1.7;
}

.intro-visual-element {
    flex: 0.8;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    transform: translateY(-40px);
}

.services-preview-creative {
    padding: 80px 6%;
    background-color: #0a0a0a;
}

.services-header-offset {
    margin-left: 10%;
    margin-bottom: 60px;
}

.services-header-offset h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 10px;
}

.services-header-offset p {
    font-size: 1.1rem;
    color: #999;
}

.service-cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.service-card {
    background-color: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    width: calc(33.333% - 27px);
    display: flex;
    flex-direction: column;
}

.card-offset-1 {
    transform: translateY(20px);
}

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

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

.card-offset-4 {
    transform: translateY(-20px);
}

.card-offset-5 {
    transform: translateY(15px);
}

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-info h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 12px;
}

.service-info p {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 20px;
    flex: 1;
}

.price-tag {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.select-service {
    padding: 12px 24px;
    background-color: #2a2a2a;
    color: #fff;
    border: 1px solid #444;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s;
}

.select-service:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.philosophy-block {
    display: flex;
    padding: 120px 6%;
    gap: 80px;
    background-color: #151515;
    align-items: flex-start;
}

.philosophy-content-irregular {
    flex: 1.2;
    padding-right: 40px;
}

.philosophy-content-irregular h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #fff;
}

.philosophy-content-irregular p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #bbb;
    line-height: 1.8;
}

.philosophy-image-overlap {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    transform: translateY(60px);
}

.booking-section {
    padding: 100px 8%;
    background-color: #0f0f0f;
}

.booking-header-creative {
    text-align: center;
    margin-bottom: 50px;
    transform: translateX(-8%);
}

.booking-header-creative h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.booking-header-creative p {
    font-size: 1.1rem;
    color: #999;
}

.booking-form-asymmetric {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    background-color: #1a1a1a;
    border-radius: 4px;
    transform: translateX(5%);
}

.form-field {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 14px;
    background-color: #252525;
    border: 1px solid #333;
    color: #fff;
    font-size: 1rem;
    border-radius: 2px;
    font-family: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #555;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #fff;
    color: #000;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
}

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

.footer-creative {
    background-color: #0a0a0a;
    padding: 60px 6% 30px;
    border-top: 1px solid #222;
}

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

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
}

.footer-col p {
    color: #888;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background-color: #151515;
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #666;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    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 {
    flex: 1;
    color: #ccc;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

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

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

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #1a1a1a;
    padding: 60px 50px;
    border-radius: 4px;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-content .service-selected {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #252525;
    color: #fff;
    border-radius: 2px;
    font-weight: 600;
}

.thanks-content .back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s;
}

.thanks-content .back-home:hover {
    background-color: #ddd;
    transform: translateY(-2px);
}

.page-header {
    padding: 80px 8%;
    background-color: #151515;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: #999;
}

.page-content {
    padding: 60px 10%;
    max-width: 1000px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 1.4rem;
    color: #ddd;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content p {
    font-size: 1.05rem;
    color: #bbb;
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.page-content ul li {
    color: #aaa;
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-info {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.05rem;
    color: #ccc;
    margin-bottom: 12px;
}

.contact-info .email-display {
    color: #aaa;
    font-weight: 500;
}

.about-studio-section {
    padding: 80px 6%;
}

.about-flex {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.about-flex.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.05rem;
    color: #bbb;
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

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

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 1.1rem;
    color: #999;
    line-height: 1.7;
}

.service-detail-card {
    background-color: #1a1a1a;
    padding: 50px;
    margin-bottom: 40px;
    border-radius: 4px;
    display: flex;
    gap: 50px;
}

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

.service-detail-info h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.service-detail-info p {
    font-size: 1.05rem;
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-price {
    flex: 0.3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #252525;
    padding: 30px;
    border-radius: 4px;
}

.service-detail-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.service-detail-price .price-label {
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image-overlay {
        width: 100%;
        clip-path: none;
        opacity: 0.3;
    }

    .intro-offset {
        flex-direction: column;
    }

    .intro-visual-element {
        transform: translateY(0);
        width: 100%;
    }

    .service-card {
        width: 100%;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5 {
        transform: translateY(0);
    }

    .philosophy-block {
        flex-direction: column;
    }

    .philosophy-image-overlap {
        transform: translateY(0);
        width: 100%;
        height: 350px;
    }

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

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

    .nav-links {
        gap: 20px;
        font-size: 0.85rem;
    }

    .about-flex,
    .about-flex.reverse {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
    }
}