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

:root {
    --primary: #1c1c1c;
    --accent: #b8956a;
    --light: #f4f2ed;
    --white: #ffffff;
    --text: #2e2e2e;
    --gray: #7a7a7a;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

.ad-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--accent);
    color: var(--white);
    padding: 7px 20px;
    font-size: 10px;
    text-align: center;
    z-index: 9999;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
}

header {
    position: fixed;
    top: 32px;
    right: 0;
    padding: 40px 60px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 35px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary);
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-end;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent);
}

.hero-asymmetric {
    min-height: 100vh;
    padding-top: 32px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-grid {
    width: 100%;
    display: flex;
    position: relative;
}

.hero-image-block {
    width: 58%;
    height: 92vh;
    position: relative;
    background: var(--light);
    margin-left: 80px;
}

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

.hero-text-block {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 80px 70px;
    max-width: 520px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 52px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 35px;
    line-height: 1.2;
    color: var(--primary);
}

.hero-text-block p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 45px;
}

.offset-section {
    padding: 140px 0;
    position: relative;
}

.asymmetric-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    gap: 100px;
    align-items: center;
}

.asymmetric-wrapper.reverse {
    flex-direction: row-reverse;
}

.text-column {
    flex: 1;
    max-width: 500px;
}

.text-column h2 {
    font-size: 44px;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
    line-height: 1.25;
}

.text-column p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray);
}

.image-column {
    flex: 1;
    position: relative;
}

.offset-image {
    width: 100%;
    height: 550px;
    background: var(--light);
    position: relative;
}

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

.floating-accent {
    position: absolute;
    background: var(--accent);
    width: 180px;
    height: 180px;
    bottom: -40px;
    right: -40px;
    z-index: -1;
}

.overlap-section {
    padding: 160px 80px;
    background: var(--light);
}

.overlap-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.section-heading {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 25px;
    color: var(--primary);
}

.section-subheading {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 700px;
    margin-bottom: 80px;
}

.services-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    align-items: stretch;
    background: var(--white);
    position: relative;
    min-height: 400px;
}

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

.service-card:nth-child(even) .service-image {
    margin-left: 0;
    margin-right: -60px;
}

.service-image {
    flex: 0 0 45%;
    background: var(--primary);
    margin-left: -60px;
    position: relative;
}

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

.service-content {
    flex: 1;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary);
    letter-spacing: -0.3px;
}

.service-desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 30px;
}

.service-price {
    font-size: 26px;
    color: var(--accent);
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.btn-select {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background: var(--accent);
}

.diagonal-section {
    padding: 180px 80px;
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.diagonal-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -10%;
    width: 120%;
    height: 100px;
    background: var(--white);
    transform: rotate(-2deg);
}

.diagonal-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.diagonal-content h2 {
    font-size: 46px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.diagonal-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.stacked-form-section {
    padding: 120px 80px;
    background: var(--white);
}

.form-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
    position: sticky;
    top: 100px;
}

.form-intro h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.form-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
}

.form-wrapper {
    flex: 1;
    background: var(--light);
    padding: 60px;
}

.form-group {
    margin-bottom: 35px;
}

.form-group label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 500;
}

.btn-submit:hover {
    background: var(--accent);
}

footer {
    background: var(--primary);
    color: var(--white);
    padding: 90px 80px 50px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 600;
    opacity: 0.9;
}

.footer-col p,
.footer-col ul {
    font-size: 14px;
    line-height: 1.9;
    opacity: 0.7;
}

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

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

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    line-height: 1.7;
    opacity: 0.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 30px auto 0;
    text-align: center;
    font-size: 11px;
    opacity: 0.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(28, 28, 28, 0.98);
    color: var(--white);
    padding: 28px 40px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(8px);
}

.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: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
}

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

.btn-cookie {
    padding: 12px 30px;
    border: 1px solid var(--white);
    cursor: pointer;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--white);
}

.btn-accept {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-accept:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.btn-reject:hover {
    background-color: var(--white);
    color: var(--primary);
}

.page-header-asymmetric {
    padding: 140px 80px 80px;
    background: var(--light);
    margin-top: 32px;
}

.page-header-asymmetric h1 {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: -1px;
    max-width: 900px;
    margin: 0 auto;
    color: var(--primary);
}

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

.page-content h2 {
    font-size: 36px;
    font-weight: 300;
    margin-top: 60px;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray);
}

.page-content ul,
.page-content ol {
    margin-left: 30px;
    margin-bottom: 25px;
}

.page-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--gray);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 80px;
    display: flex;
    gap: 80px;
}

.contact-left {
    flex: 1;
}

.contact-left h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.contact-left p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.contact-right {
    flex: 1;
    background: var(--light);
    padding: 60px;
}

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

.contact-detail h3 {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
}

.thanks-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 80px;
    background: var(--light);
}

.thanks-box {
    max-width: 700px;
    text-align: center;
    background: var(--white);
    padding: 80px 70px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.thanks-box h1 {
    font-size: 58px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: var(--primary);
}

.thanks-box p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 25px;
}

.thanks-service {
    background: var(--light);
    padding: 30px;
    margin: 40px 0;
    font-size: 18px;
    color: var(--text);
}

.btn-home {
    display: inline-block;
    padding: 16px 45px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.btn-home:hover {
    background: var(--accent);
}

@media (max-width: 1024px) {
    header {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        padding: 50px 40px 30px;
    }

    .logo {
        writing-mode: horizontal-tb;
        transform: none;
    }

    nav {
        flex-direction: row;
        gap: 20px;
    }

    .hero-grid {
        flex-direction: column;
    }

    .hero-image-block {
        width: 100%;
        margin-left: 0;
        height: 60vh;
    }

    .hero-text-block {
        position: static;
        transform: none;
        margin: -60px 40px 0;
        max-width: none;
    }

    .asymmetric-wrapper {
        flex-direction: column !important;
        padding: 0 40px;
        gap: 50px;
    }

    .service-card {
        flex-direction: column !important;
    }

    .service-image {
        flex: 0 0 300px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .form-asymmetric {
        flex-direction: column;
        padding: 0 40px;
    }

    .form-intro {
        position: static;
    }

    .contact-grid {
        flex-direction: column;
        padding: 80px 40px;
    }

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