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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    overflow-x: hidden;
}

.header-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    background: #f5f5f5;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

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

.main-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #d4a574;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
}

.hero-visual {
    margin-top: 80px;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

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

.hero-text {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    background: #d4a574;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: #c89560;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.intro-narrative {
    padding: 7rem 3rem;
    background: #fafafa;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.2;
}

.narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: #444;
    line-height: 1.8;
}

.visual-break {
    padding: 0;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
}

.grid-item {
    flex: 1 1 50%;
    min-width: 300px;
    height: 500px;
    position: relative;
    overflow: hidden;
    background: #e5e5e5;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.parcours-section {
    padding: 8rem 3rem;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

.parcours-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.parcours-card {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.parcours-card.featured {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 12px;
}

.card-image {
    flex: 1 1 450px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: #e5e5e5;
}

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

.card-content {
    flex: 1 1 450px;
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1.5rem;
}

.select-service {
    background: #1a1a1a;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-inline {
    padding: 6rem 3rem;
    background: #2a2a2a;
    color: white;
}

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

.testimonial-container blockquote {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-container cite {
    font-style: normal;
    font-size: 1.1rem;
    color: #d4a574;
}

.form-section {
    padding: 8rem 3rem;
    background: #f5f5f5;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.form-container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
}

.booking-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    background: #d4a574;
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #c89560;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.cta-final {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

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

.main-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 5rem 3rem 2rem;
}

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

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #d4a574;
}

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

.footer-bottom p {
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 2rem;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

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

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

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

.cookie-content a {
    color: #d4a574;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #d4a574;
    color: white;
}

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

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

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

.page-hero-minimal {
    margin-top: 80px;
    padding: 6rem 3rem 4rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

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

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

.hero-content-centered p {
    font-size: 1.2rem;
    color: #555;
}

.about-story {
    padding: 7rem 3rem;
    background: white;
}

.visual-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

.split-image {
    flex: 1 1 50%;
    min-width: 400px;
    background: #e5e5e5;
}

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

.split-content {
    flex: 1 1 50%;
    min-width: 400px;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafafa;
}

.split-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.split-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.7;
}

.philosophy-section {
    padding: 7rem 3rem;
    background: white;
}

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

.content-centered h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 600;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.philosophy-item {
    flex: 1 1 300px;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.approach-visual {
    padding: 7rem 3rem;
    background: #fafafa;
}

.cta-centered {
    padding: 6rem 3rem;
    background: white;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 12px;
}

.cta-box h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.btn-primary {
    display: inline-block;
    background: #d4a574;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #c89560;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.page-hero-visual {
    margin-top: 80px;
    height: 500px;
    position: relative;
}

.hero-overlay-dark {
    width: 100%;
    height: 100%;
    position: relative;
}

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

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

.hero-text-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text-overlay p {
    font-size: 1.3rem;
    font-weight: 300;
}

.services-intro {
    padding: 5rem 3rem;
    background: white;
}

.services-detailed {
    padding: 3rem 3rem 8rem;
    background: white;
    max-width: 1400px;
    margin: 0 auto;
}

.service-block {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.service-block.left-aligned .service-visual {
    order: 1;
}

.service-block.left-aligned .service-info {
    order: 2;
}

.service-block.right-aligned .service-visual {
    order: 2;
}

.service-block.right-aligned .service-info {
    order: 1;
}

.service-visual {
    flex: 1 1 500px;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    background: #e5e5e5;
}

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

.service-info {
    flex: 1 1 500px;
}

.service-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-duration {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-info > p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.service-includes li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #444;
    font-size: 0.98rem;
}

.service-includes li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1.5rem;
}

.booking-cta {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

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

.cta-content-wide h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content-wide p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2.5rem;
}

.contact-layout {
    margin-top: 80px;
    padding: 5rem 3rem;
    background: white;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}

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

.contact-info-block h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

.contact-visual {
    flex: 1 1 450px;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    background: #e5e5e5;
}

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

.access-info {
    padding: 5rem 3rem;
    background: #fafafa;
}

.access-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

.access-info p {
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
}

.access-list {
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
}

.access-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
    font-size: 1rem;
}

.access-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-size: 1.5rem;
}

.thanks-hero {
    margin-top: 80px;
    padding: 8rem 3rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #e8e8e8 100%);
    min-height: 70vh;
}

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

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-confirmation {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #333;
}

.next-steps {
    text-align: left;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.6;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    background: #d4a574;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.contact-reminder {
    margin-bottom: 3rem;
    font-size: 1.05rem;
    color: #555;
}

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

.legal-page {
    margin-top: 80px;
    padding: 5rem 3rem;
    background: white;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.last-updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.legal-container p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.legal-container ul li {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

.legal-container a:hover {
    color: #c89560;
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem 1.5rem;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
    }

    .main-nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

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

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

    .parcours-card {
        flex-direction: column;
    }

    .card-image,
    .card-content {
        flex: 1 1 100%;
    }

    .grid-item {
        flex: 1 1 100%;
    }

    .split-image,
    .split-content {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .split-content {
        padding: 3rem 2rem;
    }

    .service-block.left-aligned .service-visual,
    .service-block.left-aligned .service-info,
    .service-block.right-aligned .service-visual,
    .service-block.right-aligned .service-info {
        order: unset;
    }

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

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

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