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

:root {
    --primary: #1a1a1a;
    --secondary: #d4a574;
    --accent: #8b7355;
    --light: #f8f6f3;
    --white: #ffffff;
    --text: #2c2c2c;
    --text-light: #666666;
    --border: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

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

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

.btn-accept:hover {
    background: #c49763;
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.main-nav {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary);
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 90vh;
}

.hero-left,
.hero-right {
    flex: 1;
    min-width: 0;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background: var(--light);
}

.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    font-size: 62px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-right {
    position: relative;
}

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

.cta-primary,
.cta-secondary,
.cta-outline {
    display: inline-block;
    padding: 18px 38px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.cta-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.split-image,
.split-content {
    flex: 1;
    min-width: 0;
}

.split-image {
    position: relative;
    overflow: hidden;
}

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

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 80px;
    background: var(--white);
}

.split-content.dark {
    background: var(--primary);
    color: var(--white);
}

.split-content.centered {
    align-items: center;
    text-align: center;
}

.split-content h2 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

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

.split-content.dark p {
    color: rgba(255, 255, 255, 0.8);
}

.split-content a {
    margin-top: 20px;
}

.label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.values-grid {
    padding: 120px 0;
    background: var(--light);
}

.section-title-center {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.5px;
}

.values-wrapper {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    text-align: center;
}

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

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.services-preview-split,
.testimonials-split,
.cta-split,
.story-split,
.philosophy-split,
.values-split,
.commitment-split,
.services-intro-split,
.info-split,
.packages-split,
.cta-services-split,
.contact-info-split,
.location-split,
.visit-info-split,
.faq-split,
.cta-contact-split {
    display: flex;
    align-items: stretch;
}

.services-preview-split.reverse,
.testimonials-split.reverse,
.story-split.reverse,
.values-split.reverse,
.services-intro-split.reverse,
.packages-split.reverse,
.location-split.reverse,
.faq-split.reverse {
    flex-direction: row-reverse;
}

.testimonial-bg,
.cta-bg,
.values-bg,
.packages-bg,
.visit-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

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

.quote {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 12px;
    color: var(--text);
}

.author {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
}

.cta-group {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.page-hero-split {
    display: flex;
    min-height: 70vh;
}

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

.header-left {
    flex: 1;
}

.header-left h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-right p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section {
    padding: 120px 0;
    background: var(--white);
}

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

.team-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: var(--light);
    overflow: hidden;
}

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

.team-info {
    padding: 32px;
}

.team-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.role {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.team-info p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.philosophy-list {
    margin-top: 40px;
}

.philosophy-item {
    margin-bottom: 32px;
}

.philosophy-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.philosophy-item p {
    font-size: 17px;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    margin: 28px 0;
}

.benefits-list li {
    font-size: 17px;
    line-height: 2;
    padding-left: 32px;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 20px;
}

.pricing-section {
    padding: 120px 0;
    background: var(--white);
}

.pricing-category-split {
    display: flex;
    margin-bottom: 80px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.pricing-category-split.reverse {
    flex-direction: row-reverse;
}

.category-header {
    flex: 0 0 320px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.category-header h3 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.category-services {
    flex: 1;
    padding: 40px;
}

.service-item-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.service-item-split:last-child {
    border-bottom: none;
}

.service-info {
    flex: 1;
}

.service-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.service-price {
    flex: 0 0 auto;
    text-align: right;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
}

.info-list {
    list-style: none;
    margin-top: 28px;
}

.info-list li {
    font-size: 17px;
    line-height: 2;
    padding-left: 32px;
    position: relative;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 24px;
}

.package-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 32px;
    margin-bottom: 24px;
    border-left: 4px solid var(--secondary);
}

.package-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.package-card p {
    font-size: 16px;
    margin-bottom: 16px;
}

.package-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
}

.original-price {
    font-size: 18px;
    font-weight: 400;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 12px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-icon {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.contact-text {
    flex: 1;
}

.contact-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.contact-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transport-info {
    margin-top: 32px;
}

.transport-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.transport-info ul {
    list-style: none;
}

.transport-info li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.transport-info strong {
    color: var(--secondary);
}

.visit-tips {
    margin-top: 32px;
}

.visit-tips h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.visit-tips ul {
    list-style: none;
}

.visit-tips li {
    font-size: 16px;
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
}

.visit-tips li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

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

.thankyou-container {
    max-width: 700px;
    text-align: center;
}

.thankyou-icon {
    margin: 0 auto 32px;
    width: 120px;
    height: 120px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.thankyou-container h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.thankyou-message {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thankyou-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.next-steps {
    padding: 100px 0;
    background: var(--white);
}

.next-steps h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

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

.step-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 40px;
    background: var(--light);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.thankyou-info {
    padding: 100px 0;
    background: var(--light);
}

.thankyou-info h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

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

.info-link-card {
    flex: 1;
    min-width: 300px;
    padding: 48px;
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.info-link-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

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

.legal-page {
    padding: 100px 0;
    background: var(--white);
}

.legal-page h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
}

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 32px;
}

.legal-content li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--secondary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent);
}

#revokeCookieConsent {
    margin-top: 24px;
}

.main-footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

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

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

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

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

.footer-col a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .hero-split,
    .page-hero-split,
    .intro-split,
    .services-preview-split,
    .testimonials-split,
    .cta-split,
    .story-split,
    .philosophy-split,
    .values-split,
    .commitment-split,
    .services-intro-split,
    .info-split,
    .packages-split,
    .cta-services-split,
    .contact-info-split,
    .location-split,
    .visit-info-split,
    .faq-split,
    .cta-contact-split {
        flex-direction: column;
    }

    .pricing-category-split {
        flex-direction: column;
    }

    .category-header {
        flex: 0 0 auto;
        padding: 40px;
    }

    .section-header-split {
        flex-direction: column;
        gap: 32px;
    }

    .split-content {
        padding: 60px 40px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .split-content h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border);
    }

    .nav-links a {
        display: block;
        padding: 20px 40px;
    }

    .nav-toggle {
        display: flex;
    }

    .container-wide,
    .container-narrow {
        padding: 0 24px;
    }

    .nav-container {
        padding: 0 24px;
    }

    .hero-left {
        padding: 60px 32px;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .split-content {
        padding: 60px 32px;
    }

    .split-content h2 {
        font-size: 32px;
    }

    .section-title-center {
        font-size: 36px;
        margin-bottom: 48px;
    }

    .values-wrapper {
        gap: 40px;
    }

    .cta-group {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary,
    .cta-outline {
        width: 100%;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .service-item-split {
        flex-direction: column;
        gap: 16px;
    }

    .service-price {
        text-align: left;
    }

    .footer-container {
        gap: 48px;
    }

    .thankyou-container h1 {
        font-size: 36px;
    }

    .thankyou-message {
        font-size: 18px;
    }

    .legal-page h1 {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .split-content h2 {
        font-size: 28px;
    }

    .section-title-center {
        font-size: 30px;
    }

    .logo {
        font-size: 24px;
    }
}