/* =============================================
   JS Hypnose - Main Stylesheet
   Modern, Professional Hypnotherapy Website
   ============================================= */

/* CSS Variables & Reset */
:root {
    --cream: #faf9f7;
    --cream-dark: #f3f1ed;
    --sage: #6b7c6b;
    --sage-light: #8a9b8a;
    --sage-lighter: #a8b5a8;
    --deep-teal: #2d3d3d;
    --deep-teal-dark: #1a2828;
    --warm-gray: #5c5856;
    --soft-brown: #9a8b80;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #5c5c5c;
    --border-light: rgba(0, 0, 0, 0.06);

    /* Animation Timing */
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
    --transition-slower: 0.8s;
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection styling */
::selection {
    background: var(--sage);
    color: var(--white);
}

/* =============================================
   Typography
   ============================================= */
h1, h2, h3, h4 {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.section-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 16px;
    font-weight: 500;
}

.section-title {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-description {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* =============================================
   Navigation
   ============================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    transition: all var(--transition-normal) ease;
}

header.scrolled {
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
}

/* Transparent header for pages with colored hero */
header.transparent {
    background: transparent;
}

header.transparent.scrolled {
    background: rgba(250, 249, 247, 0.92);
}

nav {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--transition-normal) ease;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo:hover {
    opacity: 0.7;
}

header.transparent .logo img {
    filter: invert(1) brightness(2);
}

header.transparent.scrolled .logo img {
    filter: none;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-normal) ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-dark);
}

header.transparent .nav-links a {
    color: rgba(255, 255, 255, 0.75);
}

header.transparent .nav-links a:hover,
header.transparent .nav-links a.active {
    color: var(--white);
}

header.transparent.scrolled .nav-links a {
    color: var(--text-muted);
}

header.transparent.scrolled .nav-links a:hover,
header.transparent.scrolled .nav-links a.active {
    color: var(--text-dark);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 22px;
    height: 1.5px;
    background: var(--text-dark);
    transition: all var(--transition-normal) var(--ease-out-expo);
    transform-origin: center;
}

header.transparent .mobile-menu-btn span {
    background: var(--white);
}

header.transparent.scrolled .mobile-menu-btn span {
    background: var(--text-dark);
}

.mobile-menu-btn.active span:first-child {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   Buttons
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    border-radius: 6px;
    transition: all var(--transition-normal) ease;
    cursor: pointer;
    border: none;
}

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

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

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    border-color: rgba(0, 0, 0, 0.15);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
}

.btn-white {
    background: var(--white);
    color: var(--text-dark);
}

.btn-white:hover {
    background: var(--text-dark);
    color: var(--white);
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-normal) ease;
}

.btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* =============================================
   Hero Section (Index)
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 48px 100px;
    background: var(--cream);
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.hero-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 20px;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.1s forwards;
}

.hero h1 {
    font-size: 54px;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-description {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.75;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-text .btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--sage-light) 0%, var(--sage) 100%);
    border-radius: 8px;
    overflow: hidden;
    margin-left: auto;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.decorative-circle {
    display: none;
}

/* =============================================
   Page Hero (Subpages)
   ============================================= */
.page-hero {
    padding: 160px 48px 80px;
    text-align: center;
    background: var(--cream);
    position: relative;
}

.page-hero .section-label {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.1s forwards;
}

.page-hero .lead {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* Dark Page Hero (About) */
.about-hero {
    padding: 140px 48px 100px;
    background: var(--deep-teal);
    position: relative;
    overflow: hidden;
}

.about-hero .hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-hero .section-label {
    color: var(--sage-light);
}

.about-hero h1 {
    color: var(--white);
    font-size: 52px;
    margin-bottom: 24px;
}

.about-hero .lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 30px;
}

.about-hero .hero-image-wrapper {
    background: linear-gradient(145deg, var(--sage) 0%, var(--sage-light) 100%);
    margin-left: 0;
    margin-right: auto;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.credential-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

/* Journey Section (About page) */
.journey-section {
    padding: 120px 48px;
    background: var(--cream);
}

.journey-content {
    max-width: 800px;
    margin: 0 auto;
}

.journey-header {
    text-align: center;
    margin-bottom: 60px;
}

.journey-header h2 {
    font-size: 42px;
    color: var(--text-dark);
}

.journey-text p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 24px;
}

/* =============================================
   Section Styling
   ============================================= */
section {
    padding: 140px 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* =============================================
   Services Section
   ============================================= */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--cream);
    padding: 40px;
    border-radius: 12px;
    transition: all var(--transition-normal) ease;
    position: relative;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--border-light);
}

.service-number {
    font-family: 'EB Garamond', serif;
    font-size: 48px;
    color: var(--sage-light);
    opacity: 0.4;
    margin-bottom: 16px;
    line-height: 1;
    transition: all var(--transition-normal) ease;
}

.service-card:hover .service-number {
    opacity: 0.6;
    color: var(--sage);
}

.service-card h3 {
    font-size: 28px;
    color: var(--deep-teal);
    margin-bottom: 10px;
}

.service-tagline {
    font-size: 14px;
    color: var(--sage);
    font-style: italic;
    margin-bottom: 20px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.service-pricing {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    font-size: 13px;
    font-weight: 500;
    color: var(--sage);
}

/* =============================================
   About Preview Section
   ============================================= */
.about-preview {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--deep-teal-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: floatCircle 20s ease-in-out infinite;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--sage) 0%, var(--sage-light) 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-text .section-label {
    color: var(--sage-light);
}

.about-text h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 30px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.about-text .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    margin-top: 30px;
}

.about-text .btn-outline:hover {
    background: var(--white);
    color: var(--deep-teal);
    border-color: var(--white);
}

/* =============================================
   Hypnosis Info Section
   ============================================= */
.hypnosis-info {
    background: var(--cream);
}

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

.hypnosis-content .lead-text {
    font-size: 22px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 40px;
    font-family: 'EB Garamond', serif;
}

.hypnosis-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.feature-item {
    padding: 24px;
    transition: transform var(--transition-normal) ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--sage);
    border-radius: 12px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal) ease;
}

.feature-item:hover .feature-icon {
    background: var(--deep-teal);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.feature-item h4 {
    font-size: 20px;
    color: var(--deep-teal);
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =============================================
   Partners/Links Section
   ============================================= */
.partners {
    background: var(--white);
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 24px;
    border-radius: 10px;
    transition: all var(--transition-normal) ease;
}

.partner-link:hover {
    background: var(--cream);
    transform: translateY(-3px);
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: var(--sage-light);
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    color: var(--white);
    font-weight: 500;
    transition: all var(--transition-normal) ease;
}

.partner-link:hover .partner-logo {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(122, 139, 122, 0.2);
}

.partner-link span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    transition: color var(--transition-normal) ease;
}

.partner-link:hover span {
    color: var(--deep-teal);
}

/* =============================================
   Contact CTA Section
   ============================================= */
.contact-cta {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
    text-align: center;
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatCircle 15s ease-in-out infinite;
}

.contact-cta h2 {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 25px;
}

.contact-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.contact-cta .btn-primary {
    background: var(--white);
    color: var(--deep-teal);
}

.contact-cta .btn-primary:hover {
    background: var(--deep-teal);
    color: var(--white);
}

/* =============================================
   Content Sections (Text pages)
   ============================================= */
.content-section {
    padding: 80px 60px;
    background: var(--white);
}

.content-text {
    max-width: 750px;
    margin: 0 auto;
}

.content-text h2 {
    font-size: 36px;
    color: var(--deep-teal);
    margin-bottom: 30px;
}

.content-section p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 24px;
}

/* Highlight Box */
.highlight-box {
    background: var(--cream);
    padding: 40px;
    border-radius: 12px;
    margin: 36px 0;
    border: 1px solid transparent;
    transition: all var(--transition-normal) ease;
}

.highlight-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--border-light);
}

.highlight-box h3 {
    font-size: 28px;
    color: var(--deep-teal);
    margin-bottom: 20px;
}

.highlight-box p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.highlight-quote {
    background: var(--cream);
    padding: 40px;
    border-radius: 12px;
    margin: 50px 0;
    position: relative;
}

.highlight-quote::before {
    content: '"';
    font-family: 'EB Garamond', serif;
    font-size: 100px;
    color: var(--sage);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 30px;
    line-height: 1;
}

.highlight-quote p {
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    color: var(--deep-teal);
    line-height: 1.6;
    font-style: italic;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* =============================================
   Capabilities Grid
   ============================================= */
.capabilities {
    background: var(--white);
    padding: 120px 60px;
}

.capabilities-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.capabilities-header h2 {
    font-size: 48px;
    color: var(--deep-teal);
    margin-bottom: 25px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-card {
    background: var(--cream);
    padding: 32px 28px;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-normal) ease;
    border: 1px solid transparent;
}

.capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
    border-color: var(--border-light);
}

.capability-icon {
    width: 56px;
    height: 56px;
    background: var(--sage);
    border-radius: 12px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal) ease;
}

.capability-card:hover .capability-icon {
    background: var(--deep-teal);
}

.capability-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
}

.capability-card h4 {
    font-size: 20px;
    color: var(--deep-teal);
    margin-bottom: 15px;
}

.capability-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =============================================
   FAQ Section
   ============================================= */
.faq-section {
    padding: 120px 60px;
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--deep-teal-dark) 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-header .section-label {
    color: var(--sage-light);
}

.faq-header h2 {
    font-size: 48px;
    color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all var(--transition-normal) ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.07);
}

.faq-question {
    padding: 30px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 18px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal) var(--ease-out-expo);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-toggle svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    transition: transform var(--transition-normal) var(--ease-out-back);
}

.faq-item.active .faq-toggle {
    background: var(--sage);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow) var(--ease-out-expo);
}

.faq-answer-content {
    padding: 0 35px 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* =============================================
   Timeline Section
   ============================================= */
.timeline-section {
    padding: 120px 60px;
    background: var(--cream);
}

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-header h2 {
    font-size: 48px;
    color: var(--deep-teal);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--sage-light);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 60px;
    padding-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    padding-left: 60px;
}

.timeline-content {
    width: 50%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--sage);
    border-radius: 50%;
    border: 4px solid var(--cream);
    transition: all var(--transition-normal) var(--ease-out-back);
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 20px rgba(122, 139, 122, 0.4);
}

.timeline-year {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    color: var(--sage);
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 18px;
    color: var(--deep-teal);
    margin-bottom: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.timeline-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =============================================
   Approach Section
   ============================================= */
.approach-section {
    padding: 120px 60px;
    background: var(--white);
}

.approach-header {
    text-align: center;
    margin-bottom: 80px;
}

.approach-header h2 {
    font-size: 48px;
    color: var(--deep-teal);
    margin-bottom: 25px;
}

.approach-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    background: var(--cream);
    padding: 36px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-normal) ease;
    border: 1px solid transparent;
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
    border-color: var(--border-light);
}

.approach-icon {
    width: 60px;
    height: 60px;
    background: var(--sage);
    border-radius: 12px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal) ease;
}

.approach-card:hover .approach-icon {
    background: var(--deep-teal);
}

.approach-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--white);
}

.approach-card h3 {
    font-size: 24px;
    color: var(--deep-teal);
    margin-bottom: 15px;
}

.approach-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =============================================
   Contact Page
   ============================================= */
.contact-hero {
    padding: 140px 60px 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 20px;
    background: white;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal) ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.info-icon {
    width: 44px;
    height: 44px;
    background: var(--sage);
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal) ease;
}

.info-item:hover .info-icon {
    background: var(--deep-teal);
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.info-item h4 {
    color: var(--deep-teal);
    margin-bottom: 8px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.info-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.info-item a {
    color: var(--sage);
    text-decoration: none;
    transition: color var(--transition-normal) ease;
}

.info-item a:hover {
    color: var(--deep-teal);
}

.map-container {
    width: 100%;
    height: 280px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    margin-top: 24px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.contact-form h3 {
    color: var(--deep-teal);
    margin-bottom: 24px;
    font-size: 26px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--deep-teal);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: all var(--transition-normal) ease;
    background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    background: white;
    box-shadow: 0 0 0 3px rgba(107, 124, 107, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all var(--transition-normal) ease;
}

.submit-button:hover {
    background: var(--sage);
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

/* =============================================
   Legal Pages (Datenschutz, Impressum)
   ============================================= */
.page-header {
    padding: 160px 48px 80px;
    text-align: center;
    background: var(--cream);
}

.page-header-content h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.page-header-content p {
    font-size: 17px;
    color: var(--text-muted);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.1s forwards;
}

.legal-content {
    padding: 80px 48px 120px;
    background: var(--white);
}

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

.legal-container h2 {
    font-size: 24px;
    color: var(--deep-teal);
    margin: 40px 0 20px;
}

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

.legal-container p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-date {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--sage);
    font-style: italic;
}

/* =============================================
   Footer
   ============================================= */
footer {
    background: var(--deep-teal);
    color: var(--white);
    padding: 80px 60px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand h3 {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
}

.footer-certification {
    display: inline-block;
    margin-top: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-certification:hover {
    opacity: 1;
}

.omni-logo {
    width: 70px;
    height: auto;
    filter: invert(1);
}

.footer-links h4 {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-normal) ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width var(--transition-normal) ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   Animations
   ============================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTextIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes heroVisualIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes circleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 0.3;
        transform: scale(1);
    }
}

@keyframes lineGrow {
    from {
        opacity: 0;
        height: 0;
    }
    to {
        opacity: 1;
        height: 80px;
    }
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slower) var(--ease-out-expo);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all var(--transition-slower) var(--ease-out-expo);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all var(--transition-slower) var(--ease-out-expo);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: all var(--transition-slower) var(--ease-out-expo);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-slow) var(--ease-out-expo);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   Responsive Styles
   ============================================= */
@media (max-width: 1024px) {
    header {
        padding: 15px 30px;
    }

    .hero {
        padding: 100px 30px 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    section {
        padding: 100px 30px;
    }

    .section-title {
        font-size: 42px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .about-text {
        text-align: center;
    }

    .hypnosis-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        text-align: left;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .page-header {
        padding: 140px 30px 60px;
    }

    .page-header-content h1 {
        font-size: 36px;
    }

    .legal-content {
        padding: 60px 30px 80px;
    }

    .legal-container h2 {
        font-size: 22px;
    }

    .page-hero {
        padding: 140px 30px 80px;
    }

    .page-hero h1 {
        font-size: 48px;
    }

    .about-hero {
        padding: 140px 30px 80px;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .journey-section {
        padding: 80px 30px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }

    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100%;
        text-align: left;
        padding-left: 60px;
        padding-right: 0;
    }

    .timeline-dot {
        left: 20px;
    }
}

@media (max-width: 768px) {
    body.menu-open {
        position: fixed;
        overflow: hidden;
        width: 100%;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--cream);
        flex-direction: column;
        padding: 100px 30px 150px;
        gap: 25px;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        overflow-y: auto;
    }

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

    .nav-links a {
        font-size: 20px;
        color: var(--text-dark);
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 10000;
    }

    .hero h1 {
        font-size: 38px;
    }

    .about-hero {
        text-align: center;
    }

    .about-hero .hero-text {
        text-align: center;
    }

    .about-hero h1 {
        font-size: 34px;
    }

    .about-hero .lead {
        font-size: 16px;
    }

    .credentials {
        justify-content: center;
    }

    .credential-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .hero-subtitle {
        font-size: 11px;
    }

    .section-title {
        font-size: 34px;
    }

    .service-card {
        padding: 35px;
    }

    .about-text h2 {
        font-size: 34px;
    }

    .contact-cta {
        padding: 80px 30px;
    }

    .contact-cta h2 {
        font-size: 34px;
    }

    .partners-grid {
        gap: 40px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .page-hero .lead {
        font-size: 16px;
    }

    .content-section {
        padding: 60px 30px;
    }

    .content-text h2 {
        font-size: 28px;
    }

    .highlight-box {
        padding: 28px;
    }

    .capabilities {
        padding: 60px 30px;
    }

    .capabilities-header {
        margin-bottom: 40px;
    }

    .faq-section {
        padding: 60px 30px;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .capabilities-header h2,
    .faq-header h2,
    .timeline-header h2,
    .approach-header h2 {
        font-size: 28px;
    }

    .faq-question h4 {
        font-size: 16px;
    }

    .capability-card {
        padding: 24px 20px;
    }

    .highlight-quote {
        padding: 35px;
    }

    .highlight-quote p {
        font-size: 20px;
    }

    .contact-form {
        padding: 35px;
    }

    /* Contact page section overrides */
    .page-hero + section {
        padding: 60px 30px 80px !important;
    }

    .contact-info {
        gap: 25px;
    }

    .info-item {
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .page-header {
        padding: 120px 20px 50px;
    }

    .page-header-content h1 {
        font-size: 30px;
    }

    .legal-content {
        padding: 50px 20px 70px;
    }

    .legal-container h2 {
        font-size: 20px;
        margin: 30px 0 15px;
    }

    .legal-container p {
        font-size: 15px;
    }
}

/* =============================================
   Smooth Page Transitions
   ============================================= */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--deep-teal);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.6s var(--ease-out-expo);
}

.page-transition.active {
    transform: translateY(0);
}

/* =============================================
   Loading State
   ============================================= */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--sage-lighter);
    border-top-color: var(--sage);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
