/* EMPATHERAPY - Nature-Inspired Design System */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', 'Inter', -apple-system, sans-serif;
    color: #4A4A4A;
    background: #FEFEFE;
    line-height: 1.7;
    font-size: 17px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    color: #3A3A3A;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #6B8E7B;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #4A6B56;
}

/* === LAYOUT === */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

.section-light {
    background: #F5F2EB;
}

/* === HEADER === */
header {
    background: #FEFEFE;
    padding: 1.5rem 0;
    border-bottom: 1px solid #E8E4DA;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #3A3A3A;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #5A5A5A;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

nav a:hover {
    color: #6B8E7B;
}

/* === HERO === */
.hero {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5F2EB 0%, #FEFEFE 100%);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero .subheadline {
    font-size: 1.3rem;
    color: #6A6A6A;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #6B8E7B;
    color: #FEFEFE;
}

.btn-primary:hover {
    background: #5A7A68;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #6B8E7B;
    border: 2px solid #6B8E7B;
}

.btn-secondary:hover {
    background: #6B8E7B;
    color: #FEFEFE;
}

/* === CARDS === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #FEFEFE;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #E8E4DA;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card h3 {
    color: #6B8E7B;
    margin-bottom: 1rem;
}

.service-card .price {
    font-weight: 600;
    color: #8B7355;
    font-size: 1.3rem;
    margin: 1rem 0;
}

.therapist-role {
    color: #8B7355;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* === THERAPIST CARDS === */
.therapist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.therapist-card {
    background: #FEFEFE;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #E8E4DA;
    transition: all 0.3s;
}

.therapist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.therapist-image-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FEFEFE;
    font-size: 0.9rem;
}

/* === CONTENT SECTIONS === */
.content-block {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* === NATURE DIVIDERS === */
.nature-divider {
    height: 60px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(168, 181, 160, 0.08) 50%, 
        transparent 100%
    );
    position: relative;
    overflow: hidden;
}

.nature-divider::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(168, 181, 160, 0.3) 20%,
        rgba(168, 181, 160, 0.5) 50%,
        rgba(168, 181, 160, 0.3) 80%,
        transparent 100%
    );
}

.nature-divider::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #A8B5A0;
    font-size: 1.2rem;
    background: #FEFEFE;
    padding: 0 1rem;
}

/* === FOOTER === */
footer {
    background: #3A3A3A;
    color: #D0D0D0;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

footer a {
    color: #A8B5A0;
}

footer a:hover {
    color: #FEFEFE;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #5A5A5A;
    font-size: 0.9rem;
}

/* === DECORATIVE ELEMENTS === */
.divider {
    width: 60px;
    height: 2px;
    background: #A8B5A0;
    margin: 2rem auto;
}

.quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    text-align: center;
    color: #5A5A5A;
    max-width: 700px;
    margin: 3rem auto;
    line-height: 1.6;
}

/* === FORMS === */
input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #E8E4DA;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #6B8E7B;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero h1 { font-size: 2.8rem; }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .therapist-grid {
        grid-template-columns: 1fr;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

    .nature-divider {
        height: 40px;
    }
}

/* === UTILITIES === */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* === SMOOTH SCROLLING === */
html {
    scroll-behavior: smooth;
}

/* === SELECTION COLORS === */
::selection {
    background: #A8B5A0;
    color: #FEFEFE;
}
```

---

## FILE 11: CNAME
```
empatherapy.co

/* 4-COLUMN GRID FOR "HOW IT WORKS" */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* RESPONSIVE: Stack on mobile */
@media (max-width: 1024px) {
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
}
```

---

## BACKEND TRACKING SYSTEM FOR THERAPIST COMMISSIONS

### GOOGLE SHEETS SETUP

**Create 2 Google Sheets:**

1. **Lead Tracking Sheet**
2. **Commission Calculation Sheet**

---

### SHEET 1: LEAD TRACKING

**Columns:**
- A: Date
- B: Client Name
- C: Client Email
- D: Service Type
- E: Therapist Name
- F: Session Status (Inquiry / Discovery Call / Booked / Completed / Cancelled)
- G: Session Fee (AUD)
- H: Commission (25% = formula: =G2*0.25)
- I: Payment Status (Pending / Paid)
- J: Notes

**Google Form for Therapists to Report Sessions:**

Create form with:
1. Therapist Name (dropdown: Cassidy, etc.)
2. Client Name
3. Client Email
4. Service Type (dropdown: 1:1 Empatherapy, Integration, FreeTheDream, EER)
5. Session Fee (number)
6. Session Status (dropdown: Booked, Completed, Cancelled)
7. Notes (optional)

**Form → Automatically populates Sheet 1**

---

### SHEET 2: COMMISSION DASHBOARD

**Summary view:**
```
Therapist Name | Total Sessions | Total Revenue | Total Commission Owed | Paid | Balance

Cassidy        | =COUNTIF(Sheet1!C:C,"Cassidy") | =SUMIF(Sheet1!C:C,"Cassidy",Sheet1!G:G) | =SUMIF(Sheet1!C:C,"Cassidy",Sheet1!H:H) | [manual entry] | =D2-E2
