/* MINIMAL PREMIUM ARCHETYPE */
/* Reset and 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-color: #fafafa;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 2rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2a2a2a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f5f2 0%, #ffffff 100%);
    padding: 6rem 2rem;
}

.hero-content {
    max-width: 900px;
    text-align: center;
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 300;
    line-height: 1.6;
}

/* Intro Section */
.intro-section {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.8;
    color: #444;
    font-weight: 300;
}

/* Philosophy Section */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: #f8f5f2;
}

.philosophy-container {
    max-width: 700px;
    margin: 0 auto;
}

.philosophy-text h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

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

/* Services Preview */
.services-preview {
    padding: 10rem 2rem;
    background-color: #ffffff;
}

.services-preview h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 6rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    padding: 3rem;
    background-color: #fafafa;
    border-left: 3px solid #2a2a2a;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateX(10px);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.service-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 500;
    color: #2a2a2a;
    display: block;
}

.cta-link {
    display: block;
    text-align: center;
    margin-top: 5rem;
    font-size: 1.1rem;
    color: #2a2a2a;
    text-decoration: none;
    padding: 1.2rem 2rem;
    border: 2px solid #2a2a2a;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

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

/* Quality Section */
.quality-section {
    padding: 10rem 2rem;
    background-color: #2a2a2a;
    color: #ffffff;
}

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

.quality-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.quality-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: #e5e5e5;
}

/* Experience Section */
.experience-section {
    padding: 10rem 2rem;
    background-color: #f8f5f2;
}

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

.testimonial {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    color: #2a2a2a;
    margin-bottom: 2rem;
}

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

/* Booking Section */
.booking-section {
    padding: 10rem 2rem;
    background-color: #ffffff;
}

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

.booking-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.booking-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    line-height: 1.7;
}

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2a2a2a;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #d5d5d5;
    background-color: #fafafa;
    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: #2a2a2a;
}

.submit-btn {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #1a1a1a;
}

/* Visit Section */
.visit-section {
    padding: 8rem 2rem;
    background-color: #f8f5f2;
    text-align: center;
}

.visit-content {
    max-width: 600px;
    margin: 0 auto;
}

.visit-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.visit-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-secondary {
    display: inline-block;
    font-size: 1rem;
    color: #2a2a2a;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid #2a2a2a;
    transition: all 0.3s ease;
}

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

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #e5e5e5;
    padding: 6rem 2rem 3rem;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

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

.footer-section ul li a:hover {
    color: #ffffff;
}

.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.9rem;
    color: #666;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    min-width: 250px;
}

.cookie-content p a {
    color: #2a2a2a;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2a2a2a;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #1a1a1a;
}

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

.cookie-btn.reject:hover {
    background-color: #f0f0f0;
}

/* Page Hero (for subpages) */
.page-hero {
    padding: 8rem 2rem 4rem;
    background-color: #f8f5f2;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

/* About Page */
.about-intro {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.large-text {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #2a2a2a;
    font-weight: 300;
}

.story-section {
    padding: 8rem 2rem;
    background-color: #f8f5f2;
}

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

.story-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

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

.values-section {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

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

.values-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.value-item {
    margin-bottom: 4rem;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

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

.team-section {
    padding: 8rem 2rem;
    background-color: #f8f5f2;
}

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

.team-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.team-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 2rem;
}

.approach-section {
    padding: 8rem 2rem;
    background-color: #2a2a2a;
    color: #ffffff;
}

.approach-container {
    max-width: 700px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.approach-container p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #e5e5e5;
    margin-bottom: 2rem;
}

.difference-section {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

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

.difference-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.difference-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 2rem;
}

.cta-about {
    padding: 8rem 2rem;
    background-color: #f8f5f2;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    background-color: #2a2a2a;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1a1a1a;
}

/* Services Page */
.services-intro {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.services-list {
    padding: 4rem 2rem 8rem;
    background-color: #ffffff;
}

.service-detail {
    max-width: 800px;
    margin: 0 auto 6rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e5e5e5;
}

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

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

.service-header h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: #2a2a2a;
    letter-spacing: -0.01em;
}

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

.service-description p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.pricing-note {
    padding: 6rem 2rem;
    background-color: #f8f5f2;
}

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

.note-content h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

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

.booking-cta {
    padding: 8rem 2rem;
    background-color: #2a2a2a;
    color: #ffffff;
    text-align: center;
}

.booking-cta .cta-content h2 {
    color: #ffffff;
}

.booking-cta .cta-content p {
    color: #e5e5e5;
}

.booking-cta .cta-button {
    background-color: #ffffff;
    color: #2a2a2a;
}

.booking-cta .cta-button:hover {
    background-color: #f0f0f0;
}

/* Contact Page */
.contact-intro {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.contact-details {
    padding: 6rem 2rem;
    background-color: #f8f5f2;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.contact-block h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

.contact-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 1rem;
    color: #777;
    font-style: italic;
}

.email-link {
    color: #2a2a2a;
    text-decoration: none;
    border-bottom: 1px solid #2a2a2a;
    transition: opacity 0.3s ease;
}

.email-link:hover {
    opacity: 0.7;
}

.directions-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.directions-content h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

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

.booking-reminder {
    padding: 8rem 2rem;
    background-color: #2a2a2a;
    color: #ffffff;
    text-align: center;
}

.reminder-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.reminder-content p {
    font-size: 1.1rem;
    color: #e5e5e5;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.reminder-content .cta-button {
    background-color: #ffffff;
    color: #2a2a2a;
}

.reminder-content .cta-button:hover {
    background-color: #f0f0f0;
}

/* Thanks Page */
.thanks-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #f8f5f2 0%, #ffffff 100%);
    text-align: center;
}

.thanks-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

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

.thanks-info {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

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

.next-steps {
    padding: 6rem 2rem;
    background-color: #f8f5f2;
}

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

.steps-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.step-item {
    margin-bottom: 3rem;
}

.step-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

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

.thanks-reminder {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.reminder-container {
    max-width: 700px;
    margin: 0 auto;
}

.reminder-container h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

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

.thanks-nav {
    padding: 4rem 2rem 8rem;
    background-color: #f8f5f2;
}

.nav-links-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.nav-link {
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #2a2a2a;
    text-decoration: none;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

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

/* Legal Pages */
.legal-content {
    padding: 4rem 2rem 8rem;
    background-color: #ffffff;
}

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

.legal-container h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

.legal-container h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

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

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

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

.legal-container a {
    color: #2a2a2a;
    text-decoration: underline;
}

.legal-container a:hover {
    opacity: 0.7;
}

.legal-update {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

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

.cookies-table thead {
    background-color: #f8f5f2;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e5e5e5;
}

.cookies-table th {
    font-weight: 500;
    color: #2a2a2a;
}

.cookies-table td {
    font-size: 0.95rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

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

    .nav-links {
        gap: 1.5rem;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

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

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

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

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

    .cookie-btn {
        width: 100%;
    }

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

    .contact-container {
        gap: 3rem;
    }

    .nav-links-container {
        flex-direction: column;
    }

    .nav-link {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
}
