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


.material-symbols-rounded {
font-family: 'Material Symbols Rounded';
  font-weight: 200;
  font-style: normal;
  font-size: 70px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: 'liga';
}


.cause-<uniquifier> {
  font-family: "Cause", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

:root {
    --primary-dark: #2d5a3d;
    --primary-light: #e8f3ed;
    --accent-purple: #9b8fb7;
    --accent-light: #e6dff0;
    --text-dark: #2c2c2c;
    --text-gray: #666;
    --text-light: #f8f8f8;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: #fbfaf7;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: #faf9f6;
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar .nav-wrapper {
    position: relative;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-name {
    font-size: 2rem;
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-dark);
}

.logo-subtitle {
    font-size: 0.75rem;
    font-style: italic;
    font-family: 'Inter', sans-serif;
    color: var(--text-gray);
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-dark);
}

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

.nav-menu a {
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:not(.btn):after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-dark);
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn):hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-dark);
    color: white;
    border: 2px solid var(--primary-dark);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.2);
}

.btn-dark {
    background: var(--primary-dark);
    color: white;
    padding: 12px 32px;
    font-size: 1rem;
}

.btn-dark:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-link {
    background: none;
    color: var(--text-gray);
    border: 2px solid var(--border-color);
    padding: 10px 24px;
}

.btn-link:hover {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.btn-light {
    background: var(--primary-dark);
    color: light;
    border: 2px solid white;
    padding: 12px 32px;
}

.btn-light:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: #fbfaf7;
}

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

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-style: italic;
    font-family: 'Cause', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.tagline-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-purple);
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.highlight {
    color: var(--accent-purple);
    text-decoration-color: var(--accent-purple);
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    border-radius: 5px 110px 110px 5px;
    overflow: hidden;
    width:500px;
    background: white;
}

.hero-image img {
    width: 500px;
    height: auto;
    display: block;
    object-fit: cover;
}



/* Features Section */
.features {
    padding: 80px 0;
    background: #fbfaf7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    padding:15px;
    border-radius:25px;
    background: #f5f3ef;
}

.feature-card {
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Who I Work With */
.who-work {
    padding: 0px 0px 80px 0;
    background:  #fbfaf7;
}

.who-work-content {
    display: grid;
    gap: 30px;
    align-items: flex-start;
}

.who-work-image {
    position: relative;
    border-radius: 5px 110px 110px 5px;
    overflow: hidden;
    width:500px;
    background: white;
}

.who-work-image img {
    width: 500px;
    height: auto;
    display: block;
    object-fit: cover;
}

.who-work-right h2 {
    text-align: left;
    margin-bottom: 40px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.work-card {
    text-align: center;
    background: white;
    padding: 40px 24px;
    border-radius: 8px;
    transition: var(--transition);
}

.work-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.work-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    color: var(--accent-purple);
}

.work-icon svg {
    width: 100%;
    height: 100%;
}

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

.work-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* How We Work Section */
.how-work {
    padding: 80px 0;
    background: #fbfaf7;
}

.how-work h2 {
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child):after {
    content: '→';
    position: absolute;
    right: -50%;
    top: 30px;
    font-size: 1.5rem;
    color: var(--text-gray);
}

.step-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 8px;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    color: var(--primary-dark);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.process-step h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* Resources Section */
.resources {
    padding: 40px 0;
    background: var(--primary-light);
}

.resources .container {
    margin-top: 40px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.resource-card {
    background: white;
    padding: 40px 32px;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.resource-card.featured {
    border: 0px solid var(--accent-purple);
}

.resource-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    color: var(--accent-purple);
}

.resource-icon svg {
    width: 100%;
    height: 100%;
}

.resource-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.resource-card p {
    color: var(--text-gray);
    margin-bottom: 24px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.resource-link {
    color: var(--primary-dark);
    font-weight: 500;
    transition: var(--transition);
    align-self: flex-start;
}

.resource-link:hover {
    color: var(--accent-purple);
    transform: translateX(4px);
}

/* CTA Section */
.cta-section {
    padding: 25px 0;
    background: var(--primary-dark);
    color: white;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.cta-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    color: var(--accent-light);
}

.cta-text {
    flex: 1;
    text-align: left;
}

.cta-section h2 {
    font-size: 2rem;
    font-family: "Cause";
    color: white;
    font-weight:300;
    font-style:italic;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.cta-content .btn {
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    gap: 16px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--accent-light);
}

.footer-logo h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.footer-logo p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-tagline {
    font-size: 0.8rem !important;
    margin-top: 8px;
}

.footer-section h3 {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color:#fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    opacity: 0.7;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-light);
}

.footer-section p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    opacity: 0.6;
    transition: var(--transition);
    font-size: 0.85rem;
}

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

.copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Headings */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
}

h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

h3 {
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .nav-wrapper {
        padding: 0.75rem 0;
    }

    .logo-name {
        font-size: 1.5rem !important;
    }

    .logo-subtitle {
        font-size: 0.6rem !important;
    }

    .menu-toggle {
        display: flex;
        width: 32px;
        height: 32px;
        padding: 6px;
    }

    .menu-toggle span {
        width: 20px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow-y: auto;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid var(--border-color);
        z-index: 99;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: calc(100vh - 70px);
    }

    .nav-menu li {
        padding: 16px 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        font-size: 1rem;
        display: block;
    }

    h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        width: 100% !important;
    }

    .hero-image-placeholder {
        min-height: 300px;
    }

    .hero-img {
        width: 100% !important;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding: 12px 20px !important;
        font-size: 0.95rem;
    }

    /* Ensure sections have proper spacing */
    .features,
    .who-work,
    .how-work,
    .resources,
    .cta-section,
    .background-approach,
    .what-i-care {
        padding: 60px 0;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

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

    .cta-icon {
        margin: 0 auto;
    }

    .who-work-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-work-right h2 {
        text-align: center;
        margin-bottom: 30px;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step:not(:last-child):after {
        content: '↓';
        right: auto;
        top: auto;
        bottom: -40px;
        font-size: 1.2rem;
    }

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

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .nav-menu {
        gap: 0;
    }

    h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 0.95rem;
    }

    /* Sections with reduced padding */
    .hero,
    .features,
    .who-work,
    .how-work,
    .resources,
    .cta-section,
    .about-hero,
    .background-approach,
    .what-i-care,
    .little-about {
        padding: 40px 0;
    }

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

    .work-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .process-step {
        padding: 20px 16px;
    }

    .process-step:not(:last-child):after {
        bottom: -25px;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        padding: 12px 16px !important;
        font-size: 0.9rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .container {
        padding: 0 12px;
    }

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

    .footer-logo {
        flex-direction: column;
    }

    .work-card,
    .feature-card,
    .care-card,
    .resource-card {
        padding: 20px 16px;
    }

    /* Improve touch targets */
    a, button {
        min-height: 44px;
    }

    /* Better image handling */
    .hero-image,
    .who-work-image {
        width: 100% !important;
    }

    /* Navigation improvements */
    .logo {
        gap: 8px;
    }

    .logo-icon {
        width: 28px !important;
        height: 28px !important;
    }
}
