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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --accent-color: #c9a77c;
    --text-light: #ffffff;
    --text-dark: #2c2c2c;
    --gray-light: #f5f5f5;
    --gray-medium: #cccccc;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

h1, h2, h3, h4 {
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.navbar {
    background-color: var(--primary-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.ad-disclosure {
    color: var(--accent-color);
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

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

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-left,
.hero-right {
    flex: 1;
    min-height: 90vh;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background-color: var(--gray-light);
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.btn-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-size: 1.1rem;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-hero:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 1.1rem;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 1.1rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 1rem;
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-size: 1.1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

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

.philosophy-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.split-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-container-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 4rem;
    align-items: center;
}

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

.split-image {
    min-height: 600px;
    overflow: hidden;
    border-radius: 8px;
}

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

.split-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.services-preview {
    padding: 6rem 0;
    background-color: var(--gray-light);
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.3rem;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.booking-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.values-section {
    padding: 6rem 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.values-section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.values-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.value-item {
    flex: 1 1 250px;
    max-width: 300px;
}

.value-item h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column a:hover {
    color: var(--accent-color);
}

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

.disclaimer {
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin-top: 1rem;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.page-hero {
    padding: 6rem 0 4rem;
    background-color: var(--gray-light);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: #666;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-height: 500px;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-includes {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.service-includes li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: #555;
}

.duration {
    font-style: italic;
    color: #888;
    margin-top: 1.5rem;
}

.booking-cta {
    padding: 6rem 0;
    background-color: var(--secondary-color);
    text-align: center;
    color: var(--text-light);
}

.booking-cta h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.booking-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.story-section {
    padding: 6rem 0;
}

.philosophy-deep {
    padding: 6rem 0;
    background-color: var(--gray-light);
}

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

.text-center-block h2 {
    margin-bottom: 2rem;
}

.text-center-block p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.team-section {
    padding: 6rem 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.team-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
}

.team-image {
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.values-deep {
    padding: 6rem 0;
    background-color: var(--gray-light);
}

.values-deep h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-block h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.location-section {
    padding: 6rem 0;
}

.cta-about {
    padding: 6rem 0;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--text-light);
}

.cta-about h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

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

.contact-visual {
    flex: 1;
    min-height: 600px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.info-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.how-to-find {
    padding: 6rem 0;
    background-color: var(--gray-light);
}

.how-to-find h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.directions-block {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.direction-item {
    flex: 1;
    min-width: 250px;
}

.direction-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.direction-item p {
    font-size: 1rem;
    color: #555;
}

.contact-note {
    padding: 4rem 0;
}

.note-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: var(--gray-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.note-box h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-contact {
    padding: 6rem 0;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-contact h2 {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 8rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 3rem;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: var(--gray-light);
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.thanks-info {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-info h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.thanks-steps {
    padding-left: 2rem;
}

.thanks-steps li {
    list-style: decimal;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #555;
}

.thanks-note {
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    margin-bottom: 3rem;
}

.thanks-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #856404;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 4rem 0;
}

.legal-page h1 {
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.legal-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.legal-section h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-dark);
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: #555;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--gray-medium);
}

.cookie-table th {
    background-color: var(--gray-light);
    font-weight: 600;
    color: var(--primary-color);
}

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

    .hero-left,
    .hero-right {
        min-height: 50vh;
    }

    .split-container,
    .split-container-reverse {
        flex-direction: column;
    }

    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .service-card {
        flex: 1 1 100%;
    }

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

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

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