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

:root {
    --terracotta: #c4a484;
    --terracotta-deep: #a67c52;
    --sage: #7d8b75;
    --sage-light: #9aa892;
    --earth: #5c524a;
    --earth-light: #7a6f65;
    --sand: #f7f4f0;
    --sand-warm: #f0ebe4;
    --linen: #faf8f5;
    --ochre: #d4a853;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 300;
    line-height: 1.8;
    color: var(--earth);
    background: var(--linen);
    font-size: 17px;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--linen);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--earth);
    text-decoration: none;
    letter-spacing: 0.02em;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--earth-light);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

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

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding: 120px 48px 80px;
    background: linear-gradient(180deg, var(--linen) 0%, var(--sand) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 35%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse, var(--terracotta) 0%, transparent 65%);
    opacity: 0.12;
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    max-width: 520px;
    position: relative;
}

.hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--earth);
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-align: left;
}

.hero p {
    margin-top: 28px;
    font-size: 1.05rem;
    color: var(--earth-light);
    letter-spacing: 0.02em;
    text-align: left;
}

.hero .cta-button {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background: var(--sage);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.hero .cta-button:hover {
    background: var(--earth);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(92, 82, 74, 0.2);
}

.hero-photo {
    flex-shrink: 0;
}

.hero-photo .headshot {
    width: 260px;
    height: 325px;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 160px 160px 20px 20px;
    box-shadow: 0 20px 60px rgba(92, 82, 74, 0.15);
    transform: scale(1.15);
}

/* About */
.about {
    padding: 90px 24px;
    background: var(--linen);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
    opacity: 0.4;
}

.about .container {
    max-width: 900px;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--earth);
    margin-bottom: 32px;
    letter-spacing: 0.02em;
    display: inline-block;
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--sage);
}

.about p {
    color: var(--earth-light);
    margin-bottom: 20px;
}

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

.about-photo {
    flex-shrink: 0;
}

.about-photo img {
    width: 260px;
    height: 320px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(92, 82, 74, 0.12);
}

.highlight {
    color: var(--sage);
    font-weight: 400;
}

/* Specialties */
.specialties {
    padding: 75px 24px;
    background: var(--sand-warm);
    position: relative;
    overflow: hidden;
}

.specialties::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(ellipse, var(--sage) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
}

.specialties h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--earth);
    margin-bottom: 48px;
    letter-spacing: 0.02em;
    display: inline-block;
    position: relative;
}

.specialties h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--terracotta);
}

.specialties .container {
    max-width: 900px;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 48px;
}

.specialty-item {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--terracotta);
}

.specialty-item h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--earth);
    margin-bottom: 8px;
}

.specialty-item p {
    color: var(--earth-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Approach */
.approach {
    padding: 90px 24px;
    background: var(--sage);
    color: white;
}

.approach .container {
    max-width: 680px;
}

.approach h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
    color: white;
    display: inline-block;
    position: relative;
}

.approach h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.approach p {
    opacity: 0.92;
    margin-bottom: 20px;
}

.approach p:last-of-type {
    margin-bottom: 0;
}

/* Details */
.details {
    padding: 75px 24px;
    background: var(--linen);
    position: relative;
}

.details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--terracotta);
    opacity: 0.6;
    border-radius: 2px;
}

.details h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--earth);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.detail-item {
    padding: 24px;
    background: var(--sand);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(92, 82, 74, 0.1);
}

.detail-item h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--terracotta-deep);
    margin-bottom: 8px;
    font-weight: 500;
}

.detail-item p {
    color: var(--earth-light);
    font-size: 0.95rem;
}

/* Contact */
.contact {
    padding: 90px 24px;
    background: var(--sand-warm);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, var(--terracotta) 0%, transparent 70%);
    opacity: 0.06;
    border-radius: 50%;
}

.contact .container {
    max-width: 900px;
}

.contact h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--earth);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.contact-intro {
    color: var(--earth-light);
    margin-bottom: 48px;
    max-width: 600px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 60px;
    align-items: start;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--earth);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--sand);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--earth);
    background: var(--linen);
    transition: border-color 0.3s ease, background 0.3s ease;
}

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

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--earth-light);
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 300;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--sage);
    cursor: pointer;
}

.submit-button {
    background: var(--sage);
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 8px;
}

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

/* Contact Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 8px;
}

.contact-info-item span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--terracotta-deep);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-info-item a,
.contact-info-item p {
    color: var(--earth);
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 1.6;
}

.contact-info-item a:hover {
    color: var(--sage);
}

/* Page Header (for Resources, etc.) */
.page-header {
    padding: 140px 24px 50px;
    background: linear-gradient(180deg, var(--linen) 0%, var(--sand) 100%);
    text-align: center;
}

.page-header h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--earth);
    margin-bottom: 16px;
}

.page-header p {
    color: var(--earth-light);
    font-size: 1.05rem;
}

.resources-content {
    padding: 40px 24px 120px;
    background: var(--linen);
}

.resources-content .container {
    max-width: 720px;
}

/* Resource Sections */
.resource-section {
    margin-bottom: 64px;
}

.resource-section h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--earth);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--sand-warm);
}

.resource-section .section-intro {
    color: var(--earth-light);
    margin-bottom: 24px;
}

/* Resource Cards */
.resource-card {
    background: var(--sand);
    padding: 24px 28px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.resource-card h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--earth);
    margin-bottom: 8px;
}

.resource-card a {
    color: var(--sage);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 8px;
}

.resource-card a:hover {
    text-decoration: underline;
}

.resource-card p {
    color: var(--earth-light);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.resource-card p:last-child {
    margin-bottom: 0;
}

/* Crisis Cards */
.crisis-card {
    background: var(--sand-warm);
    border-left: 3px solid var(--terracotta);
}

/* Reading Section */
.book-dropdown {
    margin-bottom: 12px;
    border: 1px solid var(--sand);
    border-radius: 8px;
    overflow: hidden;
}

.book-dropdown[open] {
    background: var(--sand);
}

.reading-category {
    font-size: 1rem;
    font-weight: 500;
    color: var(--terracotta-deep);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.reading-category::-webkit-details-marker {
    display: none;
}

.reading-category::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--earth-light);
    transition: transform 0.2s ease;
}

.book-dropdown[open] .reading-category::after {
    content: '-';
}

.reading-category:hover {
    background: var(--sand);
}

.book-dropdown .book-list {
    padding: 0 20px 20px;
    margin: 0;
}

.book-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.book-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--sand);
}

.book-list li:last-child {
    border-bottom: none;
}

.book-list em {
    font-style: italic;
    color: var(--earth);
    font-weight: 400;
}

.book-list span {
    display: block;
    color: var(--earth-light);
    font-size: 0.9rem;
    margin-top: 6px;
}

/* Resource Note */
.resource-note {
    background: var(--sage);
    color: white;
    padding: 28px 32px;
    border-radius: 8px;
    margin-top: 48px;
}

.resource-note p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.resource-note a {
    color: white;
    text-decoration: underline;
}

.resource-note a:hover {
    opacity: 0.85;
}

/* Footer */
footer {
    padding: 48px 24px;
    text-align: center;
    background: var(--earth);
    color: var(--sand);
}

footer p {
    font-size: 0.85rem;
    opacity: 0.7;
    letter-spacing: 0.03em;
}

.license {
    margin-top: 8px;
    font-size: 0.75rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column-reverse;
        gap: 48px;
        padding: 140px 24px 80px;
        text-align: center;
    }

    .hero::before {
        top: 30%;
        left: 50%;
    }

    .hero h1,
    .hero p {
        text-align: center;
    }

    .hero-content {
        max-width: 600px;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-photo {
        order: -1;
        align-self: center;
    }
}

@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px 24px;
    }

    .nav-links {
        gap: 24px;
    }

    .hero {
        padding-top: 160px;
    }

    .hero::before {
        width: 400px;
        height: 400px;
        opacity: 0.1;
    }

    .hero-photo .headshot {
        width: 200px;
        height: 250px;
    }

    .about-photo img {
        width: 220px;
        height: 270px;
    }

    .about,
    .specialties,
    .approach,
    .details,
    .contact {
        padding: 60px 24px;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-info-sidebar {
        flex-direction: column;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }
}
