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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(28, 28, 28, 0.96);
    color: #fff;
    padding: 1.8rem 2rem;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(10px);
}

.cookie-banner.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-accept {
    background: #8b6f47;
    color: #fff;
}

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

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

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

.header {
    background: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

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

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #999;
    padding: 0.4rem 0.9rem;
    border: 1px solid #444;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.05);
}

.hero-section {
    margin-bottom: 0;
    background: #0a0a0a;
}

.hero-image-container {
    position: relative;
    height: 650px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    max-width: 850px;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-overlay p {
    font-size: 1.4rem;
    color: #f0f0f0;
    max-width: 700px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.intro-section {
    padding: 5rem 2rem;
    background: #fff;
    display: flex;
    justify-content: center;
}

.intro-content {
    max-width: 750px;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
    font-weight: 400;
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4a4a4a;
}

.experience-section {
    display: flex;
    background: #f5f1eb;
    padding: 0;
}

.experience-image {
    flex: 1;
    min-width: 400px;
    background-color: #d4c5b0;
}

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

.experience-text {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 400;
}

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

.atmosphere-section {
    display: flex;
    background: #fff;
    padding: 0;
}

.atmosphere-text {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.atmosphere-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 400;
}

.atmosphere-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.atmosphere-image {
    flex: 1;
    min-width: 400px;
    background-color: #e8e4de;
}

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

.services-preview {
    padding: 5rem 2rem;
    background: #fafafa;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: #fff;
    width: 350px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background-color: #ddd;
}

.service-card h4 {
    font-size: 1.4rem;
    padding: 1.5rem 1.5rem 0.8rem;
    color: #2c2c2c;
    font-weight: 500;
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.service-card .price {
    display: block;
    padding: 0 1.5rem 1.5rem;
    font-size: 1.5rem;
    color: #8b6f47;
    font-weight: 600;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #8b6f47;
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background: #a0834f;
    transform: translateY(-2px);
}

.philosophy-section {
    padding: 5rem 2rem;
    background: #2c2c2c;
    color: #e8e8e8;
    display: flex;
    justify-content: center;
}

.philosophy-content {
    max-width: 850px;
    text-align: center;
}

.philosophy-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #d4af37;
    font-weight: 400;
}

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.booking-section {
    padding: 5rem 2rem;
    background: #f5f1eb;
    display: flex;
    justify-content: center;
}

.booking-container {
    max-width: 600px;
    width: 100%;
}

.booking-container h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 400;
}

.booking-container > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #555;
    font-size: 1.05rem;
}

.booking-form {
    background: #fff;
    padding: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    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: #8b6f47;
}

.form-group textarea {
    resize: vertical;
}

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

.btn-submit:hover {
    background: #a0834f;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #e8e4de;
    display: flex;
    justify-content: center;
}

.disclaimer {
    max-width: 900px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

.footer {
    background: #1a1a1a;
    color: #b8b8b8;
    padding: 3.5rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column h4 {
    color: #d4af37;
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d4af37;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

.contact-section {
    padding: 5rem 2rem;
    background: #fff;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-container h1 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 400;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 500;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: #8b6f47;
    font-weight: 600;
}

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

.about-hero {
    padding: 5rem 2rem;
    background: #f5f1eb;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.about-hero p {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-story {
    padding: 5rem 2rem;
    background: #fff;
}

.story-container {
    max-width: 950px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
    font-weight: 400;
}

.story-container p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: #555;
}

.services-hero {
    padding: 4rem 2rem;
    background: #2c2c2c;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 400;
}

.services-hero p {
    font-size: 1.2rem;
    color: #e8e8e8;
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    padding: 5rem 2rem;
    background: #fafafa;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    background: #fff;
    margin-bottom: 3rem;
    padding: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-image {
    flex: 0 0 350px;
    height: 280px;
    background-color: #e8e4de;
}

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

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 500;
}

.service-details p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-price {
    font-size: 1.8rem;
    color: #8b6f47;
    font-weight: 700;
}

.thanks-section {
    padding: 6rem 2rem;
    background: #f5f1eb;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #fff;
    padding: 4rem 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #8b6f47;
    font-weight: 400;
}

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

.legal-page {
    padding: 5rem 2rem;
    background: #fff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 400;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: #2c2c2c;
    font-weight: 500;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-container ul li {
    margin-bottom: 0.6rem;
    color: #555;
}

@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .experience-section,
    .atmosphere-section {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
        padding: 2rem;
    }

    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: none;
        width: 100%;
    }

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