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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.nav-asymmetric {
    background-color: var(--bg-white);
    padding: 25px 0;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-offset {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    transform: translateY(-3px);
}

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

.nav-items a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-items a:hover {
    color: var(--secondary-color);
}

.hero-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 520px;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: var(--bg-light);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transform: rotate(-1deg);
}

.hero-title {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.hero-image-offset {
    flex: 1;
    position: relative;
    transform: translateX(20px) translateY(-15px);
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--bg-light);
}

.intro-block {
    background-color: var(--bg-light);
    padding: 90px 40px;
    position: relative;
    transform: skewY(-1deg);
    margin: 60px 0;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    transform: skewY(1deg);
}

.intro-text-narrow {
    max-width: 720px;
    margin: 0 auto 0 80px;
}

.intro-text-narrow h2 {
    font-size: 38px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: -0.8px;
}

.intro-text-narrow p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-preview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

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

.service-card {
    width: calc(33.333% - 30px);
    min-width: 320px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

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

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

.service-card.offset-center {
    transform: translateX(-15px);
}

.service-card.offset-right {
    transform: translateX(20px) translateY(-10px);
}

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

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

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

.service-image-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 25px 15px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 25px 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 25px 20px;
}

.service-select-btn {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select-btn:hover {
    background-color: var(--secondary-color);
}

.form-section {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px;
    border: 1px solid var(--border-color);
    transform: translateX(-30px);
}

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

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.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;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.about-preview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.about-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-image-side {
    flex: 1;
    transform: translateX(-40px);
}

.about-image-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--bg-light);
}

.about-content-side {
    flex: 1;
    padding-left: 40px;
}

.about-content-side h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.about-content-side p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-asymmetric {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-wide {
    flex: 1.5;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 25px 40px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

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

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

.btn-accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-reject:hover {
    border-color: var(--bg-white);
}

.page-header-offset {
    background-color: var(--bg-light);
    padding: 80px 40px;
    text-align: center;
    transform: translateX(-20px);
}

.header-content-asymmetric h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.header-content-asymmetric p {
    font-size: 18px;
    color: var(--text-light);
}

.about-story {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.story-container {
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-block-left {
    flex: 1;
    padding-right: 30px;
}

.story-block-left h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-block-left p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-image-right {
    flex: 1;
    transform: translateX(30px) translateY(20px);
}

.story-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--bg-light);
}

.values-section {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
}

.value-item.offset-position-1 {
    transform: translateY(-20px);
}

.value-item.offset-position-2 {
    transform: translateY(20px);
}

.value-item.offset-position-3 {
    transform: translateX(15px);
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.expertise-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.expertise-container {
    max-width: 900px;
}

.expertise-container h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.expertise-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.team-section {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

.team-intro {
    max-width: 1400px;
    margin: 0 auto 50px;
    text-align: center;
}

.team-intro h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-intro p {
    font-size: 18px;
    color: var(--text-light);
}

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

.team-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-about {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.cta-container {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 60px;
    text-align: center;
    transform: rotate(-0.5deg);
}

.cta-container h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-container .cta-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.cta-container .cta-primary:hover {
    background-color: var(--bg-white);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

.service-detail.offset-layout-1 {
    flex-direction: row;
}

.service-detail.offset-layout-2 {
    flex-direction: row-reverse;
}

.service-detail.offset-layout-3 {
    flex-direction: row;
    transform: translateX(30px);
}

.service-detail-content {
    flex: 1;
    padding: 30px;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--bg-light);
}

.services-cta {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

.contact-info-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-layout {
    display: flex;
    gap: 70px;
}

.contact-main {
    flex: 1;
}

.contact-main h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.contact-image-side {
    flex: 1;
    transform: translateY(30px);
}

.contact-image-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--bg-light);
}

.contact-approach {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

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

.approach-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.location-info {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.location-content {
    max-width: 800px;
}

.location-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

.thanks-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
    background-color: var(--bg-light);
    padding: 80px 60px;
    border: 1px solid var(--border-color);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-service {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 40px;
    padding: 15px;
    background-color: var(--bg-white);
}

.thanks-next-steps {
    text-align: left;
    margin: 40px auto;
    max-width: 600px;
}

.thanks-next-steps h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-next-steps ul {
    list-style: none;
    margin-bottom: 30px;
}

.thanks-next-steps ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.thanks-next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.legal-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

.legal-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

    .hero-image-offset {
        transform: none;
    }

    .about-split,
    .story-container,
    .contact-layout {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .nav-items {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 38px;
    }

    .service-card {
        width: 100%;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}