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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #6b5b4f;
    --accent-color: #d4a574;
    --background-light: #fafaf9;
    --background-white: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --spacing-xs: 1rem;
    --spacing-sm: 2rem;
    --spacing-md: 4rem;
    --spacing-lg: 6rem;
    --spacing-xl: 8rem;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation - Minimal */
.nav-minimal {
    padding: 2rem 0;
    background: var(--background-white);
    position: relative;
    z-index: 100;
}

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

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

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

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section - Minimal Premium */
.hero-minimal {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) 2rem;
    background: var(--background-light);
}

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

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* Containers */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Sections - Generous Spacing */
section {
    padding: var(--spacing-xl) 0;
}

.intro-section {
    background: var(--background-white);
    padding: var(--spacing-lg) 0;
}

.intro-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.large-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Story Section */
.story-section {
    background: var(--background-light);
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.content-left,
.content-right {
    flex: 1;
}

.content-left h3 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.content-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.image-right img {
    width: 100%;
    border-radius: 4px;
}

/* Insight Section */
.insight-section {
    background: var(--background-white);
}

.insight-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.insight-item {
    text-align: center;
    padding: var(--spacing-sm);
}

.insight-item h4 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.insight-item p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Testimonial */
.testimonial-section {
    background: var(--background-light);
    padding: var(--spacing-xl) 0;
}

.testimonial-large {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: var(--spacing-sm);
}

.testimonial-author {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Benefit Section */
.benefit-section {
    background: var(--background-white);
}

.benefit-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.process-step {
    padding: var(--spacing-sm) 0;
}

.step-number {
    display: block;
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.process-step h4 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Services Preview */
.services-preview {
    background: var(--background-light);
}

.services-preview h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.service-card {
    background: var(--background-white);
    padding: var(--spacing-md);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
}

.service-card.featured {
    border: 2px solid var(--secondary-color);
}

.badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 2px;
}

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

.service-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-duration {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

/* Buttons */
.cta-primary,
.cta-secondary,
.btn-select,
.btn-submit {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

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

.cta-primary:hover,
.btn-submit:hover {
    background: var(--secondary-color);
}

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

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

.btn-select {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    font-weight: 500;
}

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

.btn-select.selected {
    background: var(--accent-color);
}

/* Trust Section */
.trust-section {
    background: var(--background-white);
}

.trust-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.trust-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.credential-item {
    padding: var(--spacing-sm);
    border-left: 3px solid var(--accent-color);
}

.credential-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.credential-item p:last-child {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Form Section */
.form-section {
    background: var(--background-light);
}

.form-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.form-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

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

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

.form-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #d1d1d1;
    background: var(--background-white);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    margin-top: var(--spacing-sm);
}

/* Final CTA */
.final-cta {
    background: var(--background-white);
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: var(--spacing-sm);
}

.final-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 1rem;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: var(--background-light);
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design - Mobile First */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 5.5rem;
    }

    .split-content {
        flex-direction: row;
        align-items: center;
    }

    .insight-grid {
        flex-direction: row;
    }

    .process-flow {
        flex-direction: row;
    }

    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
    .nav-links {
        gap: 4rem;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .sticky-cta {
        display: block;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .intro-section h2 {
        font-size: 1.8rem;
    }

    .large-text {
        font-size: 1.1rem;
    }

    .content-left h3,
    .insight-section h2,
    .benefit-section h2,
    .services-preview h2,
    .trust-section h2,
    .form-section h2,
    .final-cta h2 {
        font-size: 2rem;
    }

    .testimonial-large {
        font-size: 1.4rem;
    }

    .service-price {
        font-size: 2rem;
    }

    section {
        padding: var(--spacing-md) 0;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }
}
