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

:root {
    --primary-color: #8B5A3C;
    --secondary-color: #D4A574;
    --accent-color: #5D4037;
    --text-dark: #2C1810;
    --text-light: #6D5D52;
    --bg-light: #FAF7F2;
    --bg-white: #FFFFFF;
    --bg-cream: #F5EFE7;
    --border-color: #E8DED0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Navigation Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-right a:hover,
.nav-right a.active {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-split h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 90, 60, 0.1), transparent);
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-ghost:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Intro Asymmetric */
.intro-asymmetric {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    background: var(--bg-cream);
}

.intro-image {
    flex: 0.8;
}

.intro-image img {
    border-radius: 8px;
}

.intro-content {
    flex: 1.2;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.05rem;
}

/* Philosophy Split */
.philosophy-split {
    display: flex;
    align-items: stretch;
    min-height: 80vh;
}

.philosophy-text {
    flex: 1.2;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    display: block;
}

.philosophy-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.philosophy-text > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.point p {
    color: var(--text-light);
    line-height: 1.7;
}

.philosophy-visual {
    flex: 0.8;
}

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

/* Testimonial Banner */
.testimonial-banner {
    background: var(--primary-color);
    padding: 4rem 5%;
    text-align: center;
}

.testimonial-banner blockquote {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-banner p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--bg-white);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-banner cite {
    font-style: normal;
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Courses Grid */
.courses-grid {
    padding: 6rem 5%;
    background: var(--bg-light);
}

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

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
}

.courses-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.course-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.badge,
.badge-corner {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    border-radius: 4px;
}

.course-image {
    height: 220px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.course-duration {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.course-content > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.course-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.course-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.course-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-select {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.7rem 1.3rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

/* Process Split */
.process-split {
    display: flex;
    min-height: 80vh;
}

.process-visual {
    flex: 0.7;
}

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

.process-content {
    flex: 1.3;
    padding: 5rem 5%;
    background: var(--bg-cream);
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 50px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Gallery Asymmetric */
.gallery-asymmetric {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gallery-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    flex: 1 1 calc(25% - 1rem);
    min-width: 200px;
    height: 300px;
}

.gallery-item.large {
    flex: 1 1 calc(50% - 1rem);
    height: 400px;
}

.gallery-item.tall {
    height: 450px;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* CTA Immersive */
.cta-immersive {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: var(--bg-light);
    align-items: center;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
}

.form-container {
    flex: 1;
}

/* Forms */
.booking-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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: var(--primary-color);
}

.form-privacy {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.checkbox-label a {
    text-decoration: underline;
}

/* Values Split */
.values-split {
    display: flex;
    min-height: 70vh;
}

.values-content {
    flex: 1.3;
    padding: 5rem 5%;
    background: var(--bg-white);
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 250px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: var(--accent-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.values-visual {
    flex: 0.7;
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-cream);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-col p {
    color: var(--bg-cream);
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: var(--bg-cream);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: var(--bg-cream);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    color: var(--bg-cream);
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.btn-cookie.accept:hover {
    background: var(--accent-color);
}

.btn-cookie.reject {
    background: transparent;
    color: var(--bg-cream);
    border: 1px solid var(--bg-cream);
}

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

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

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

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

/* Page Hero */
.page-hero {
    background: var(--bg-cream);
    padding: 5rem 5%;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Story Split */
.story-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.story-content {
    flex: 1.2;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.story-visual {
    flex: 0.8;
}

.story-visual img {
    border-radius: 8px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

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

.philosophy-content-center h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.philosophy-blocks {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.philosophy-block {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
}

.philosophy-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.philosophy-block p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1 1 calc(50% - 3rem);
    min-width: 300px;
    display: flex;
    gap: 2rem;
}

.member-image {
    flex: 0 0 180px;
}

.member-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.member-role {
    display: block;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.member-info p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Values Narrative */
.values-narrative {
    padding: 6rem 5%;
    background: var(--bg-cream);
}

.values-split-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.values-text {
    flex: 1.5;
}

.values-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.values-text > p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.value-detail {
    margin-bottom: 2.5rem;
}

.value-detail h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: var(--accent-color);
}

.value-detail p {
    color: var(--text-light);
    line-height: 1.7;
}

.values-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.values-images img {
    border-radius: 8px;
    width: 100%;
}

/* Stats Section */
.stats-section {
    padding: 5rem 5%;
    background: var(--primary-color);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Testimonials Extended */
.testimonials-extended {
    padding: 6rem 5%;
    background: var(--bg-white);
    text-align: center;
}

.testimonials-extended h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: left;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card cite {
    font-style: normal;
}

.testimonial-card strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.testimonial-card span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* CTA About */
.cta-about {
    padding: 5rem 5%;
    background: var(--bg-cream);
}

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

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Split */
.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info {
    flex: 1.2;
    padding: 4rem 5%;
    background: var(--bg-light);
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--accent-color);
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    flex: 0 0 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.contact-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-content .note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 0.8;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(44,24,16,0.9);
    color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
}

.map-overlay p {
    margin: 0;
    line-height: 1.6;
}

/* Visit Section */
.visit-section {
    padding: 4rem 5%;
    background: var(--bg-white);
}

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

.visit-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.visit-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.dates-list {
    list-style: none;
    margin: 1.5rem 0;
}

.dates-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 600;
}

/* FAQ Contact */
.faq-contact {
    padding: 4rem 5%;
    background: var(--bg-cream);
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Social Section */
.social-section {
    padding: 4rem 5%;
    background: var(--bg-white);
    text-align: center;
}

.social-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.social-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* Thanks Hero */
.thanks-hero {
    padding: 6rem 5%;
    background: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    color: var(--bg-white);
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.thanks-details {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: left;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-icon {
    flex: 0 0 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-info-box {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.thanks-info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}

.thanks-info-box p {
    color: var(--text-light);
}

/* While Waiting */
.while-waiting {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.waiting-content h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.waiting-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.waiting-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.waiting-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.waiting-card h3 {
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 0.7rem;
    color: var(--accent-color);
}

.waiting-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 1.5rem 1rem;
}

.waiting-card .link-arrow {
    margin: 0 1.5rem 1.5rem;
}

/* Testimonial Thanks */
.testimonial-thanks {
    padding: 4rem 5%;
    background: var(--bg-cream);
}

.testimonial-thanks blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-thanks p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-thanks cite {
    font-style: normal;
    color: var(--primary-color);
    font-size: 1.05rem;
}

/* CTA Thanks */
.cta-thanks {
    padding: 4rem 5%;
    background: var(--bg-white);
}

/* Legal Content */
.page-hero-simple {
    background: var(--bg-cream);
    padding: 4rem 5%;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.page-hero-simple p {
    font-size: 1rem;
    color: var(--text-light);
}

.legal-content {
    padding: 4rem 5%;
    background: var(--bg-white);
}

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

.legal-container h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: var(--accent-color);
}

.legal-container h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.7rem;
    color: var(--primary-color);
}

.legal-container h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--text-dark);
}

.legal-container p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-light);
}

.legal-container ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-container strong {
    color: var(--text-dark);
    font-weight: 600;
}

.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
}

.gdpr-table th,
.gdpr-table td,
.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.gdpr-table th,
.cookie-table th {
    background: var(--bg-cream);
    font-weight: 600;
    color: var(--accent-color);
}

.gdpr-table tr:nth-child(even),
.cookie-table tr:nth-child(even) {
    background: var(--bg-light);
}

/* Services Pages */
.intro-services {
    padding: 4rem 5%;
    background: var(--bg-white);
}

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

.intro-services-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.services-features {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--accent-color);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Course Detail Cards */
.courses-detailed {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.course-detail-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.course-detail-card.featured-course {
    border: 3px solid var(--primary-color);
}

.course-detail-card.highlight-course {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-cream) 100%);
}

.course-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.course-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.course-detail-info h2 {
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
}

.course-meta {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
}

.course-detail-price {
    text-align: right;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.course-detail-split {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.course-detail-split.reverse {
    flex-direction: row-reverse;
}

.course-detail-image {
    flex: 0.8;
}

.course-detail-image img {
    border-radius: 8px;
    width: 100%;
}

.course-detail-content {
    flex: 1.2;
}

.course-detail-content h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.course-detail-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.course-curriculum {
    list-style: none;
    margin: 1.5rem 0;
}

.course-curriculum li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.course-curriculum li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.course-includes {
    background: var(--bg-cream);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.course-includes h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.course-includes ul {
    list-style: none;
}

.course-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.course-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row.header {
    background: var(--bg-cream);
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    padding: 1.2rem;
    text-align: center;
    min-width: 120px;
}

.comparison-cell:first-child {
    text-align: left;
    font-weight: 600;
    min-width: 150px;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 5%;
    background: var(--bg-cream);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

/* CTA Services */
.cta-services {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.booking-form-compact {
    max-width: 800px;
    margin: 2rem auto 0;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.form-row input,
.form-row select,
.form-row button {
    flex: 1;
    min-width: 200px;
}

.form-privacy-compact {
    margin-bottom: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .philosophy-split,
    .process-split,
    .values-split,
    .contact-split,
    .story-split,
    .intro-asymmetric {
        flex-direction: column;
    }

    .hero-visual,
    .philosophy-visual,
    .process-visual,
    .values-visual,
    .contact-visual,
    .story-visual,
    .intro-image {
        min-height: 400px;
    }

    .course-detail-split,
    .course-detail-split.reverse {
        flex-direction: column;
    }

    .values-split-layout {
        flex-direction: column;
    }

    .team-member {
        flex-direction: column;
    }

    .member-image {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-right.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .course-card,
    .waiting-card,
    .testimonial-card,
    .philosophy-block,
    .team-member {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .comparison-row {
        flex-direction: column;
    }

    .comparison-cell {
        text-align: left;
        border-bottom: 1px solid var(--border-color);
    }

    .form-row {
        flex-direction: column;
    }

    .form-row input,
    .form-row select,
    .form-row button {
        width: 100%;
    }
}

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .course-detail-card {
        padding: 1.5rem;
    }

    .course-detail-header {
        flex-direction: column;
    }

    .course-detail-price {
        text-align: left;
    }
}
