  
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: "Inter", sans-serif;
        background: #fff;
        color: #222;
        line-height: 1.6;
    }
    
    
    /* --------------------------
       Header Logo
    -------------------------- */
    
    header {
        text-align: center;
        padding: 3rem 1.5rem 2rem;
    }
    
    
    /* Logo */
    
    .logo img {
        width: 280px;
        max-width: 90%;
        height: auto;
        display: block;
        margin: 0 auto 2rem;
    }
    
    
    /* Navigation */
    
    nav ul {
        list-style: none;
        display: flex;
        justify-content: center;
        gap: 2.5rem;
        flex-wrap: wrap;
    }
    
    nav a {
        text-decoration: none;
        color: #666;
        font-size: .9rem;
        text-transform: uppercase;
        letter-spacing: .12em;
        transition: color .2s;
    }
    
    nav a:hover {
        color: #000;
    }
    
    
    /* --------------------------
       Hero
    -------------------------- */
    
    .hero {
        max-width: 700px;
        margin: 6rem auto;
        padding: 0 1.5rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: clamp(2.4rem, 5vw, 4rem);
        line-height: 1.1;
        font-weight: 700;
    
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1.15rem;
        color: #666;
    
        max-width: 600px;
        margin: 0 auto;
    }
    
    
    /* --------------------------
       Text Link (originally a button) 
    -------------------------- */
    
   .text-link {
      display: inline-flex;
      align-items: center;
  
      margin-top: 2.5rem;
  
      color: #222;
      text-decoration: underline;
      text-underline-offset: 6px;
      text-decoration-thickness: 1px;
  
      font-size: .95rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
  
      transition: gap .2s ease, color .2s ease;
    }
    
    .text-link span {
        transition: transform .2s ease;
    }
    
    .text-link:hover {
        color: #000;
        gap: .65rem;
    }
    
    .text-link:hover span {
        transform: translateX(3px);
    }

      /*
      .text-link {
    display: inline-block;
    margin-top: 2.5rem;

    color: #222;
    text-decoration: underline;
    text-underline-offset: 5px;

    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .9rem;
    font-weight: 600;
}

.text-link:hover {
    color: #666;
}*/
      
    /* --------------------------
       Footer
    -------------------------- */
    
    footer {
        text-align: center;
        padding: 5rem 1rem 2rem;
        color: #888;
        font-size: .9rem;
    }

/* --------------------------
   About "constants"
-------------------------- */

.about {
    max-width: 1100px;

    margin: 5rem auto;

    padding: 0 1.5rem;

    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 4rem;

    align-items: start;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.about-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

@media (max-width: 850px) {

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

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

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

} /*end of about styling*/

/* --------------------------
   Craft
-------------------------- */

.craft {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-areas: "main sidebar";
    gap: 5rem;
}

/* Left on Craft Page*/
.craft-work {
    grid-area: main;
}

.section-intro {
    color: #666;
    margin-bottom: 3rem;
}

.craft-work h2{
  font-size: 2.3rem;
}

.project {
    margin-bottom: 4rem;
}

.project h3 {
    font-size: 1.6rem;
    margin-bottom: .75rem;
}

.project p {
    color: #555;
    margin-bottom: 1.5rem;
}


/* Right on Craft page  */
.craft-sidebar {
    grid-area: sidebar;
    background: #f9f9f9;
    border-radius: 16px;
    padding: 2rem;
    position: sticky;
    top: 3rem;
    align-self: start; 
}

.craft-sidebar h2 {
    margin-bottom: 1rem;
}

.principle {
    margin-bottom: 3.5rem;
}

.principle h3 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
}

.principle p {
    color: #666;
}

.principle:last-child {
    margin-bottom: 0;
}


/* Shared */
.craft h2 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

.more-stories h3 {
    margin-bottom: .5rem;
    font-size:1rem;
}

.more-stories p {
    color: #666;
}


/* Responsive Craft */
@media (max-width: 900px) {

    .craft {
        grid-template-columns: 1fr;
        grid-template-areas:
            "sidebar"
            "main";
      
        gap: 4rem;
    }

    .craft-sidebar {
        position: static;
    }

}



/* --------------------------
   Reflections
-------------------------- */

.reflections {
    max-width: 850px;
    margin: 5rem auto;
    padding: 0 1.5rem;
}

.reflections h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 4rem;
}


/* Each Reflection */

.reflection-item {
    padding: 2rem 0;
    border-bottom: 1px solid #ececec;
}


/* Title */

.reflection-title {
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    text-decoration: none;
    color: #222;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color .2s ease;
}

.reflection-title:hover {
    color: #666;
}

.arrow {
    transition: transform .2s ease;
}

.reflection-title:hover .arrow {
    transform: translateX(4px);
}


/* Description */

.reflection-preview {
    margin-top: .75rem;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
}

/* Refelctions link to stories */
.reflection-text-link {
      display: inline-flex;
      align-items: center;
      margin-top: 2.5rem;
      color: #222;
      font-size: .95rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      transition: gap .2s ease, color .2s ease;
      text-decoration: none;
    }
    
    .reflection-text-link span {
        transition: transform .2s ease;
    }
    
    .reflection-text-link:hover {
        color: #000;
        gap: .65rem;
    }
    
    .reflection-text-link:hover span {
        transform: translateX(3px);
  }



/* Mobile */

@media (max-width: 768px) {

    .reflection-title {
        font-size: 1.25rem;
    }

}


/* Impact section styling */ 
/*.impact-section {
    min-height:100vh;
    padding:120px clamp(25px, 8vw, 120px);
    background:#fff;
}*/

.impact-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 1.5rem;
}

/*
.impact-container {
    max-width:1100px;
    margin:auto;
}*/

.impact-container {
    width:100%;
}

.impact-header h2 {
    font-size:3rem;
    margin-bottom:20px;
}

.impact-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.impact-header p {
    color:#555;
    max-width:800px;
    line-height:1.8;
    margin-bottom:60px;
}


.impact-grid {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}


.impact-card {
    background:#fafafa;
    border-radius:12px;
    overflow:hidden;
    transition:.3s ease;
}


.impact-card:hover {
    transform:translateY(-5px);
}


.impact-card img {
    width:100%;
    height:150px;
    object-fit:cover;
}


.impact-card h3 {
    font-size:1.05rem;
    padding:18px 18px 8px;
}


.impact-card p {
    color:#555;
     font-size:.9rem;
    line-height:1.5;
    padding:0 18px;
}


.impact-card span {
    display:block;
    color:#777;
    font-size:.85rem;
    padding:12px 18px 20px;
}

.impact-card a {
    display:block;
    padding:0 20px 25px;
    color:#222;
    text-decoration:none;
    font-weight:500;
}

.impact-card a:hover {
    color:#666;
}


@media(max-width:1100px){

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

} 
    @media(max-width:600px){

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

}    /* end of impact section styling */ 


/* --------------------------
   Contact
-------------------------- */

.contact {
    max-width: 700px;
    margin: 5rem auto;
    padding: 0 1.5rem;
}

.contact h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.contact p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.contact-links a {
    display: inline-flex;
    justify-content: space-between;

    width: 220px;

    color: #222;
    text-decoration: none;
    font-size: 1.05rem;

    padding-bottom: .5rem;
    border-bottom: 1px solid #e5e5e5;

    transition: color .2s ease;
}

.contact-links a:hover {
    color: #666;
}

.contact-links span {
    transition: transform .2s ease;
}

.contact-links a:hover span {
    transform: translateX(4px);
}
