/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 340:2 Unexpected "<"

**/
<style>
    /* Global Styles */
    :root {
      --deep-plum: #5E4B56;
      --sage-green: #8CB369;
      --warm-gold: #F9C80E;
      --warm-white: #F7F7F2;
      --dark: #333333;
    }
    
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      margin: 0;
      padding: 0;
      background-color: var(--warm-white);
      color: var(--dark);
      line-height: 1.6;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    h1, h2, h3, h4 {
      font-weight: 700;
      color: var(--deep-plum);
    }
    
    h1 {
      font-size: 3rem;
      margin-bottom: 0.5rem;
    }
    
    h2 {
      font-size: 2.2rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
      position: relative;
    }
    
    h2:after {
      content: "";
      display: block;
      width: 100px;
      height: 4px;
      background-color: var(--warm-gold);
      margin-top: 10px;
    }
    
    p {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
    }
    
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    .button {
      display: inline-block;
      background-color: var(--sage-green);
      color: white;
      font-weight: 700;
      padding: 12px 30px;
      text-decoration: none;
      border: 3px solid var(--dark);
      border-radius: 4px;
      font-size: 1.1rem;
      transition: transform 0.2s;
      box-shadow: 5px 5px 0 var(--dark);
    }
    
    .button:hover {
      transform: translate(-2px, -2px);
      box-shadow: 7px 7px 0 var(--dark);
    }
    
    /* Section Styles */
    section {
      margin: 60px 0;
    }
    
    /* Hero Section */
    .hero {
      background-color: white;
      padding: 60px 0;
      border-top: 3px solid var(--dark);
      border-bottom: 3px solid var(--dark);
    }
    
    .hero-content {
      display: flex;
      align-items: center;
      gap: 40px;
    }
    
    .hero-text {
      flex: 1;
    }
    
    .hero-image {
      flex: 1;
      position: relative;
    }
    
    .hero-image-container {
      border: 3px solid var(--dark);
      box-shadow: 12px 12px 0 var(--deep-plum);
      overflow: hidden;
      height: 400px;
      background-color: #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .placeholder-text {
      font-size: 1.2rem;
      color: #999;
      text-align: center;
      padding: 20px;
    }
    
    /* Origin Story */
    .origin {
      background-color: white;
      padding: 40px;
      border: 3px solid var(--dark);
      box-shadow: 8px 8px 0 var(--sage-green);
    }
    
    /* Values Section */
    .values {
      padding: 40px 0;
    }
    
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 30px;
    }
    
    .value-card {
      background-color: white;
      padding: 30px;
      border: 3px solid var(--dark);
      text-align: center;
    }
    
    .value-icon {
      font-size: 3rem;
      margin-bottom: 20px;
      display: inline-block;
    }
    
    /* Team Section */
    .team {
      background-color: white;
      padding: 40px;
      border: 3px solid var(--dark);
      box-shadow: 8px 8px 0 var(--warm-gold);
    }
    
    .founder {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-top: 30px;
    }
    
    .founder-image {
      width: 300px;
      height: 300px;
      border: 3px solid var(--dark);
      background-color: #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .founder-bio {
      flex: 1;
    }
    
    /* Timeline Section */
    .timeline {
      padding: 40px 0;
    }
    
    .timeline-container {
      position: relative;
      padding-left: 50px;
    }
    
    .timeline-container::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 20px;
      width: 3px;
      background-color: var(--dark);
    }
    
    .timeline-item {
      margin-bottom: 30px;
      position: relative;
    }
    
    .timeline-item::before {
      content: "";
      position: absolute;
      left: -43px;
      top: 5px;
      width: 30px;
      height: 30px;
      background-color: var(--warm-gold);
      border: 3px solid var(--dark);
      border-radius: 50%;
    }
    
    .timeline-year {
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 5px;
      color: var(--deep-plum);
    }
    
    /* Impact Section */
    .impact {
      background-color: white;
      padding: 40px;
      border: 3px solid var(--dark);
      box-shadow: 8px 8px 0 var(--deep-plum);
      margin-bottom: 60px;
    }
    
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 30px;
      text-align: center;
    }
    
    .stat-card {
      background-color: var(--warm-white);
      padding: 30px;
      border: 3px solid var(--dark);
    }
    
    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      color: var(--sage-green);
      line-height: 1;
      margin-bottom: 10px;
    }
    
    /* CTA Section */
    .cta {
      background-color: var(--deep-plum);
      color: white;
      padding: 60px 0;
      text-align: center;
      border-top: 3px solid var(--dark);
      border-bottom: 3px solid var(--dark);
    }
    
    .cta h2 {
      color: white;
    }
    
    .cta h2:after {
      margin-left: auto;
      margin-right: auto;
    }
    
    .cta .button {
      background-color: var(--warm-gold);
      color: var(--dark);
      margin-top: 20px;
    }
    
    /* Responsive Styles */
    @media (max-width: 768px) {
      .hero-content {
        flex-direction: column-reverse;
      }
      
      .hero-image-container {
        height: 250px;
      }
      
      .values-grid, .stats-grid {
        grid-template-columns: 1fr;
      }
      
      .founder {
        flex-direction: column;
        text-align: center;
      }
      
      h1 {
        font-size: 2.2rem;
      }
      
      h2 {
        font-size: 1.8rem;
      }
      
      section {
        margin: 40px 0;
      }
      
      .hero, .cta {
        padding: 40px 0;
      }
      
      .origin, .team, .impact {
        padding: 30px;
      }
      
      h2:after {
        margin-left: auto;
        margin-right: auto;
      }
    }
  </style>