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

:root {
    --primary-color: #D8B4E2;
    --primary-dark: #B895C8;
    --secondary-color: #E3C770;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #faf5fb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(216, 180, 226, 0.2), 0 2px 4px -1px rgba(216, 180, 226, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(216, 180, 226, 0.2), 0 4px 6px -2px rgba(216, 180, 226, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(128, 0, 32, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFF5F5;
    letter-spacing: 1px;
}

.logo-separator {
    margin: 0 0.5rem;
    opacity: 0.6;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #FFF5F5;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 245, 245, 0.8);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: rgba(255, 245, 245, 0.9);
}

.talk-to-grace {
    background: var(--secondary-color);
    color: #1f2937 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(227, 199, 112, 0.3);
    font-weight: 600;
}

.talk-to-grace::after {
    display: none;
}

.talk-to-grace:hover {
    background: #D4B55F;
    border-color: #D4B55F;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(227, 199, 112, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFF5F5;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #800020;
    color: #FFF5F5;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-line {
    position: absolute;
    width: 100%;
    height: auto;
    opacity: 1;
}

.hero-line-1 {
    top: 15%;
    left: 0;
    width: 100%;
}

.hero-line-2 {
    top: 50%;
    left: 0;
    width: 100%;
}

.hero-line-3 {
    bottom: 25%;
    left: 0;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-script {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 300;
    color: #FFF5F5;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFF5F5;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-subtext {
    font-size: 1.1rem;
    font-weight: 400;
    color: #FFF5F5;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: #1f2937;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    animation: fadeInUp 1s ease 0.7s both;
    box-shadow: 0 4px 15px rgba(227, 199, 112, 0.4);
}

.cta-button:hover {
    background: #D4B55F;
    border-color: #D4B55F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 199, 112, 0.5);
}

.cta-button-inline {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: #1f2937;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 199, 112, 0.4);
    border: 2px solid var(--secondary-color);
}

.cta-button-inline:hover {
    background: #D4B55F;
    border-color: #D4B55F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 199, 112, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator svg {
    display: block;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-number {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6B7280;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.section-subtitle {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #6B7280;
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--white);
    padding: 0;
}

.about-header {
    padding: 5rem 0 3rem;
    background: var(--white);
}

.about-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about .container {
    padding: 0;
    max-width: 100%;
}

.about-content {
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    align-items: stretch;
}

.about-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
}

.headshot {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
}

.about-text {
    max-width: 100%;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.about-header-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.about-text p.emphasis {
    font-weight: 600;
    color: #6B7280;
    font-size: 1.15rem;
}

.about-text p.cta-text {
    font-weight: 600;
    color: #6B7280;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Pain Points Section */
.pain-points {
    background: var(--bg-light);
}

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

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

.pain-points-text p.lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.pain-points-text p.emphasis {
    font-weight: 600;
    color: #6B7280;
    font-size: 1.15rem;
}

.pain-points-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pain-points-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    border-bottom: 1px solid rgba(107, 114, 128, 0.2);
}

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

.pain-points-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6B7280;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Program Section */
.program {
    background: var(--white);
}

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

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

.program-text p.lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.program-text p.emphasis {
    font-weight: 600;
    color: #6B7280;
    font-size: 1.15rem;
}

/* Approach Section */
.approach {
    background: var(--bg-light);
}

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

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

.approach-text p.emphasis {
    font-weight: 600;
    color: #6B7280;
    font-size: 1.15rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    border-bottom: 1px solid rgba(216, 180, 226, 0.2);
}

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

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6B7280;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Newsletter Section */
.newsletter {
    background: var(--bg-light);
    padding: 4rem 0;
}

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

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.newsletter-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.newsletter-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.substack-embed {
    max-width: 500px;
    margin: 2rem auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.substack-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: #1f2937;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.substack-button:hover {
    background: #D4B55F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 199, 112, 0.5);
}

.newsletter-privacy {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Simulation Section */
.simulation {
    background: linear-gradient(135deg, rgba(227, 199, 112, 0.1) 0%, rgba(227, 199, 112, 0.05) 100%);
    padding: 5rem 0;
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

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

.simulation-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.simulation-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.simulation-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.simulation-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

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

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item strong {
    color: var(--text-dark);
}

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

.contact-item a:hover {
    color: var(--primary-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group .required {
    color: #6B7280;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6B7280;
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: #1f2937;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 199, 112, 0.4);
}

.submit-button:hover {
    background: #D4B55F;
    border-color: #D4B55F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 199, 112, 0.5);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.footer-email {
    margin-top: 1rem;
}

.footer-email a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.9;
}

.footer-email a:hover {
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(128, 0, 32, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-script {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtext {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .about-header-title {
        font-size: 2rem;
    }

    .contact-content,
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .substack-embed {
        max-width: 100%;
        padding: 0 1rem;
    }

    .substack-embed iframe {
        height: 280px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-script {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtext {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }
}

/* Calendly Modal */
.calendly-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calendly-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.calendly-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.calendly-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.calendly-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #6B7280;
    color: #FFFFFF;
    border: 2px solid #6B7280;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(107, 114, 128, 0.3);
}

.calendly-modal-close:hover {
    background: #4B5563;
    border-color: #4B5563;
    transform: rotate(90deg);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.4);
}

.calendly-inline-widget {
    width: 100%;
    height: 700px;
    border: none;
}

@media (max-width: 768px) {
    .calendly-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 8px;
    }

    .calendly-inline-widget {
        height: 600px;
    }

    .calendly-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

