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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #f8f8f8;
}

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
}

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

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

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

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

.hero-offset {
    display: flex;
    min-height: 600px;
    position: relative;
    margin: 0;
}

.hero-content-left {
    width: 45%;
    padding: 80px 8% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 32px;
    max-width: 460px;
}

.cta-primary {
    display: inline-block;
    padding: 14px 36px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.hero-image-right {
    width: 55%;
    position: relative;
    overflow: hidden;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-block {
    display: flex;
    padding: 100px 8%;
    gap: 60px;
    background-color: #f5f5f5;
    position: relative;
}

.story-image-overlap {
    width: 40%;
    position: relative;
    margin-top: -80px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

.story-image-overlap img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-text-offset {
    width: 60%;
    padding: 40px 0 40px 40px;
}

.story-text-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 28px;
    color: #1a1a1a;
    line-height: 1.2;
}

.story-text-offset p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 20px;
}

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

.section-header-offset {
    margin-bottom: 60px;
    padding-left: 15%;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.section-header-offset p {
    font-size: 1.1rem;
    color: #666;
}

.service-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 30px;
    background-color: #fafafa;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card.offset-left {
    margin-right: 20%;
}

.service-card.offset-right {
    margin-left: 20%;
}

.service-card.offset-center {
    margin-left: 10%;
    margin-right: 10%;
}

.service-image {
    width: 280px;
    height: 210px;
    flex-shrink: 0;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.service-info h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-info p {
    color: #555;
    margin-bottom: 16px;
    flex: 1;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 16px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.booking-section-diagonal {
    padding: 100px 8%;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    transform: skewY(-2deg);
    margin: 80px 0;
}

.booking-container {
    transform: skewY(2deg);
    max-width: 700px;
    margin: 0 auto;
}

.booking-container h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 16px;
    text-align: center;
}

.booking-container > p {
    color: #d4a574;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.booking-form {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    background-color: #fafafa;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

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

.values-overlap {
    padding: 80px 8%;
    background-color: #f5f5f5;
}

.values-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.value-item {
    flex: 1;
    max-width: 320px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: #2c2c2c;
}

.value-item p {
    color: #555;
    line-height: 1.7;
}

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

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #d4a574;
}

.footer-column p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 24px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.cookie-link {
    color: #d4a574;
    text-decoration: none;
    white-space: nowrap;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-hero-about {
    padding: 100px 8%;
    background-color: #2c2c2c;
    text-align: center;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 16px;
}

.hero-text-block p {
    font-size: 1.2rem;
    color: #d4a574;
}

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

.about-text-primary {
    flex: 1;
    padding-right: 40px;
}

.about-text-primary h2 {
    font-size: 2.5rem;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.about-text-primary p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image-float {
    width: 450px;
    height: 400px;
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

.about-image-float img {
    width: 100%;
    height: 100%;
    display: block;
}

.philosophy-diagonal {
    padding: 80px 8%;
    background-color: #f5f5f5;
    transform: skewY(-1.5deg);
    margin: 60px 0;
}

.philosophy-content {
    transform: skewY(1.5deg);
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 2.3rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.team-approach {
    padding: 80px 8%;
    background-color: #fff;
}

.team-approach h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.approach-blocks {
    display: flex;
    gap: 40px;
}

.approach-item {
    flex: 1;
    padding: 40px;
    background-color: #fafafa;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.approach-item p {
    color: #555;
    line-height: 1.7;
}

.commitment-section {
    padding: 80px 8%;
    background-color: #f5f5f5;
}

.commitment-wrap {
    max-width: 800px;
    margin: 0 0 0 15%;
}

.commitment-wrap h2 {
    font-size: 2.3rem;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.commitment-wrap p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-about {
    padding: 80px 8%;
    text-align: center;
    background-color: #fff;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.cta-button-alt {
    display: inline-block;
    padding: 16px 40px;
    background-color: #d4a574;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s;
}

.cta-button-alt:hover {
    background-color: #c49564;
}

.services-hero {
    padding: 100px 8%;
    background-color: #2c2c2c;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 16px;
}

.services-hero p {
    font-size: 1.2rem;
    color: #d4a574;
}

.services-detailed {
    padding: 80px 8%;
    background-color: #fff;
}

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

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

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

.service-detail-image {
    width: 45%;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

.service-detail-text h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 20px;
}

.service-detail-text p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-cta {
    display: inline-block;
    padding: 12px 32px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: 16px;
}

.service-cta:hover {
    background-color: #d4a574;
}

.services-note {
    padding: 60px 8%;
    background-color: #f5f5f5;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-note h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.services-note p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-hero {
    padding: 100px 8%;
    background-color: #2c2c2c;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #d4a574;
}

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

.contact-block-primary {
    flex: 1;
}

.info-item {
    margin-bottom: 40px;
}

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

.info-item p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 6px;
}

.contact-image-diagonal {
    width: 500px;
    height: 450px;
    transform: rotate(-3deg);
    margin-top: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

.contact-image-diagonal img {
    width: 100%;
    height: 100%;
    display: block;
    transform: rotate(3deg) scale(1.1);
}

.contact-directions {
    padding: 80px 8%;
    background-color: #f5f5f5;
    max-width: 900px;
    margin: 0 auto;
}

.contact-directions h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-directions p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-cta-section {
    padding: 80px 8%;
    text-align: center;
    background-color: #fff;
}

.contact-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 32px;
}

.cta-button-contact {
    display: inline-block;
    padding: 16px 40px;
    background-color: #d4a574;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s;
}

.cta-button-contact:hover {
    background-color: #c49564;
}

.thanks-hero {
    padding: 100px 8%;
    background-color: #2c2c2c;
    text-align: center;
}

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

.thanks-content p {
    font-size: 1.2rem;
    color: #d4a574;
}

.thanks-details {
    padding: 80px 8%;
    background-color: #fff;
    display: flex;
    gap: 60px;
}

.thanks-message {
    flex: 1;
}

.thanks-message h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-message p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-info-box {
    width: 350px;
    padding: 32px;
    background-color: #f5f5f5;
    align-self: flex-start;
}

.thanks-info-box h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.thanks-info-box p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-next-steps {
    padding: 80px 8%;
    background-color: #f5f5f5;
    text-align: center;
}

.thanks-next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-next-steps p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 32px;
}

.cta-return-home {
    display: inline-block;
    padding: 14px 36px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-return-home:hover {
    background-color: #d4a574;
}

.legal-page {
    padding: 80px 8%;
    background-color: #fff;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 1rem;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #444;
}

.legal-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

    .hero-content-left,
    .hero-image-right {
        width: 100%;
    }

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

    .story-image-overlap,
    .story-text-offset {
        width: 100%;
    }

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

    .service-card.offset-left,
    .service-card.offset-right,
    .service-card.offset-center {
        margin-left: 0;
        margin-right: 0;
    }

    .service-image {
        width: 100%;
    }

    .values-grid,
    .approach-blocks,
    .footer-content {
        flex-direction: column;
    }

    .contact-info-offset {
        flex-direction: column;
    }

    .contact-image-diagonal {
        width: 100%;
    }

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

    .thanks-info-box {
        width: 100%;
    }

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

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

    .nav-links {
        gap: 16px;
        font-size: 0.9rem;
    }
}