/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.8rem 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

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

.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;
    flex-wrap: wrap;
}

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

.btn-accept {
    background: #ffffff;
    color: #000000;
}

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

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

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

/* Minimal Navigation */
.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 3rem;
    position: relative;
}

.brand {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #2a2a2a;
    transition: width 0.3s ease;
}

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

/* Container Utilities */
.container-narrow {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section - Minimal Premium Style */
.hero-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content-centered {
    max-width: 750px;
}

.hero-title-large {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.hero-subtitle-spacious {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 3.5rem;
    color: #555555;
}

/* Typography */
.page-title-large {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.page-subtitle-minimal {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666666;
    margin-bottom: 1rem;
}

.section-title-minimal {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
}

.intro-text-expanded {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: #444444;
}

/* Sections with Spacious Layout */
.intro-spacious,
.philosophy-section,
.about-story,
.about-values,
.about-team,
.services-intro,
.contact-info-section,
.contact-directions,
.contact-faq,
.thanks-message,
.thanks-next-steps,
.thanks-explore {
    padding: 7rem 2rem;
}

.about-hero,
.services-hero,
.contact-hero,
.thanks-hero,
.legal-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.legal-date,
.legal-subtitle {
    font-size: 0.95rem;
    color: #888888;
    margin-top: 1rem;
}

/* Visual Breaks */
.visual-break,
.about-image-break {
    margin: 5rem 0;
}

.image-container-full {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

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

/* Services - Minimal Premium */
.services-minimal,
.services-detailed {
    padding: 5rem 2rem;
}

.service-block-spacious,
.value-block-spacious,
.info-block-spacious {
    margin-bottom: 5rem;
}

.service-name,
.service-block-spacious h3,
.value-block-spacious h3,
.info-block-spacious h3 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 300;
    margin: 1.5rem 0 2rem;
}

/* Service Cards Detailed */
.service-card-detailed {
    border-top: 1px solid #e0e0e0;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-title-large {
    font-size: 2rem;
    font-weight: 400;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 300;
    color: #2a2a2a;
}

.service-description-full {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 2.5rem;
}

.service-includes {
    margin: 2.5rem 0;
}

.service-includes h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #666666;
}

.service-includes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2a2a2a;
}

/* Buttons & CTAs */
.cta-primary-large,
.cta-secondary-outline {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.cta-primary-large {
    background: #2a2a2a;
    color: #ffffff;
}

.cta-primary-large:hover {
    background: #000000;
    border-color: #000000;
}

.cta-secondary-outline {
    background: transparent;
    color: #2a2a2a;
}

.cta-secondary-outline:hover {
    background: #2a2a2a;
    color: #ffffff;
}

.btn-select-service,
.btn-submit-large {
    padding: 1rem 2.5rem;
    background: #2a2a2a;
    color: #ffffff;
    border: 1px solid #2a2a2a;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover,
.btn-submit-large:hover {
    background: #000000;
    border-color: #000000;
}

/* CTA Sections */
.cta-section-centered,
.about-cta-centered,
.services-cta-centered,
.contact-cta-centered,
.thanks-cta-spacious {
    padding: 7rem 2rem;
    text-align: center;
}

.cta-title-large {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: #666666;
    margin-bottom: 2.5rem;
}

/* Image Text Split */
.image-text-split {
    display: flex;
    align-items: center;
    margin: 6rem 0;
    gap: 4rem;
}

.split-image {
    flex: 1;
}

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

.split-text {
    flex: 1;
    padding: 2rem;
}

.split-text h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
}

/* Testimonials */
.testimonials-minimal {
    padding: 6rem 2rem;
    background: #fafafa;
}

.testimonial-block {
    margin-bottom: 4rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #444444;
}

.testimonial-author {
    font-size: 1rem;
    color: #888888;
}

/* Booking Form */
.booking-form-section {
    padding: 7rem 2rem;
    background: #fafafa;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid #d0d0d0;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit-large {
    width: 100%;
    margin-top: 1rem;
}

/* Contact Page */
.contact-block-spacious {
    margin-bottom: 5rem;
}

.contact-title {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.contact-address,
.contact-email {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
}

.contact-email a {
    color: #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.contact-email a:hover {
    color: #000000;
}

.contact-note {
    font-size: 0.95rem;
    color: #888888;
    margin-top: 1rem;
}

.hours-table {
    margin-top: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-day {
    font-weight: 400;
}

.hours-time {
    color: #555555;
}

/* Map Placeholder */
.contact-map-placeholder {
    margin: 4rem 0;
}

.map-container {
    width: 100%;
    height: 400px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
    font-size: 1.1rem;
    color: #666666;
}

/* Directions */
.directions-block {
    margin-bottom: 3rem;
}

.directions-block h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.directions-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
}

/* Thanks Page */
.thanks-title-large {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: #666666;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-text-main {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.thanks-text-secondary {
    font-size: 1.05rem;
    color: #666666;
}

.thanks-text-secondary a {
    color: #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.step-block {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 300;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
}

.explore-text {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #666666;
}

.explore-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.explore-link {
    padding: 1rem 2.5rem;
    border: 1px solid #2a2a2a;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.explore-link:hover {
    background: #2a2a2a;
    color: #ffffff;
}

.thanks-final-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #555555;
}

/* Legal Content */
.legal-content {
    padding: 4rem 2rem 6rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 3rem 0 1.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 2rem 0 1rem;
}

.legal-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 1.5rem 0 0.8rem;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #444444;
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.legal-content li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.7;
}

.legal-content li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #2a2a2a;
}

.legal-content a {
    color: #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.legal-content a:hover {
    color: #000000;
}

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

.about-text-expanded {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: #555555;
}

.philosophy-text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: #555555;
}

.final-cta-minimal {
    padding: 6rem 2rem;
    text-align: center;
}

.final-cta-text {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    color: #555555;
}

/* Footer */
.footer-minimal {
    background: #fafafa;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.9rem;
    color: #666666;
}

.footer-nav a:hover {
    color: #2a2a2a;
}

.footer-copy {
    font-size: 0.85rem;
    color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .minimal-nav {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

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

    .hero-title-large {
        font-size: 2.8rem;
    }

    .hero-subtitle-spacious {
        font-size: 1.1rem;
    }

    .page-title-large {
        font-size: 2.5rem;
    }

    .section-title-minimal {
        font-size: 1.8rem;
    }

    .cta-title-large {
        font-size: 2rem;
    }

    .image-text-split {
        flex-direction: column;
        gap: 2rem;
    }

    .split-image img {
        height: 350px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .cookie-actions {
        justify-content: center;
    }

    .container-narrow {
        padding: 0 1.5rem;
    }

    .intro-spacious,
    .philosophy-section,
    .about-story,
    .about-values,
    .about-team,
    .services-intro,
    .contact-info-section,
    .contact-directions,
    .contact-faq,
    .thanks-message,
    .thanks-next-steps,
    .thanks-explore {
        padding: 4rem 1.5rem;
    }

    .services-minimal,
    .services-detailed {
        padding: 3rem 1.5rem;
    }

    .cta-section-centered,
    .about-cta-centered,
    .services-cta-centered,
    .contact-cta-centered,
    .thanks-cta-spacious {
        padding: 4rem 1.5rem;
    }

    .thanks-title-large {
        font-size: 2.5rem;
    }

    .step-block {
        flex-direction: column;
        gap: 1rem;
    }
}
