/* --- Section Headers --- */
      .section-header {
        text-align: center;
        padding: 100px 10% 40px;
      }

      .section-header .subtitle {
        display: block;
        text-transform: uppercase;
        letter-spacing: 4px;
        font-size: 0.7rem;
        color: #888;
        margin-bottom: 12px;
      }

      .section-header h2 {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
      }

      /* --- Portfolio Grid Styling --- */
      /* Note: Assuming these styles exist in your partials, but adding here for safety */
      .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        padding: 0 10%;
      }

      /* --- About Section --- */
      .about-section {
        padding: 120px 10%;
        background-color: #fff;
        display: flex;
        justify-content: center;
      }

      .about-container {
        max-width: 1100px;
        display: flex;
        align-items: center;
        gap: 80px;
      }

      .about-image img {
        width: 380px;
        height: 500px;
        object-fit: cover;
        box-shadow: 20px 20px 0px #f4f4f4;
      }

      .about-text {
        max-width: 500px;
      }

      .about-text h2 {
        font-size: 2.8rem;
        margin-bottom: 25px;
      }

      .about-text p {
        line-height: 1.8;
        color: #444;
        font-size: 1.05rem;
        margin-bottom: 20px;
      }

      /* --- Image Divider (Glass Box) --- */
      .image-divider {
        min-height: 40vh; /* Changed from height to min-height */
        width: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 20px; /* Ensures spacing on mobile */
        box-sizing: border-box;
      }

      .quote-glass-box {
        background: rgba(255, 255, 255, 0.1); /* Slightly more visible */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 60px 40px; /* Reduced base padding */
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        width: 100%;
        max-width: 700px;
        box-sizing: border-box;
      }

      /* --- CTA Grid (Buy Prints/YouTube) --- */
      .cta-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 450px;
        width: 100%;
      }

      .cta-item {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        background-size: cover;
        background-position: center;
      }

      .cta-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        transition: background 0.4s ease;
      }

      .cta-item:hover::before {
        background: rgba(0, 0, 0, 0.5);
      }

      .cta-content {
        position: relative;
        z-index: 1;
        text-align: center;
      }

      .btn-white-outline {
        padding: 12px 30px;
        border: 1px solid #fff;
        color: #fff;
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 2px;
        transition: 0.3s;
      }

      .btn-white-outline:hover {
        background: #fff;
        color: #000;
      }

      .quote-text {
        font-style: italic;
        font-size: 1.8rem;
        color: #fff;
        line-height: 1.6;
        margin: 0;
      }

      .quote-accent-line {
        width: 40px;
        height: 1px;
        background: #fff;
        margin: 30px auto 0;
        opacity: 0.5;
      }

      /* --- Footer Styling --- */
      .site-footer {
        background-color: #000;
        color: #fff;
        padding: 80px 10% 40px;
      }

      .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 40px;
        border-bottom: 1px solid #222;
      }

      .footer-logo h3 {
        letter-spacing: 4px;
        margin: 0;
        font-size: 1.2rem;
      }

      .footer-logo p {
        font-size: 0.7rem;
        color: #777;
        margin-top: 5px;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .footer-links a {
        color: #fff;
        text-decoration: none;
        margin-left: 30px;
        font-size: 0.8rem;
        letter-spacing: 1px;
        transition: opacity 0.3s;
      }

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

      .footer-bottom {
        padding-top: 30px;
        text-align: center;
        font-size: 0.65rem;
        color: #444;
        letter-spacing: 2px;
        text-transform: uppercase;
      }

      /* --- Responsive --- */
      @media (max-width: 900px) {
        .about-container {
          flex-direction: column;
          text-align: center;
          gap: 40px;
        }

        .about-section{
          padding: 80px 5%;
        }
        .about-image img {
          width: 100%;
          max-width: 400px;
          height: auto;
          box-shadow: none;
        }
        .cta-grid {
          grid-template-columns: 1fr;
          height: 600px;
        }
        .footer-content {
          flex-direction: column;
          gap: 30px;
          text-align: center;
        }
        .footer-links a {
          margin: 0 15px;
        }
      }

      /* --- Mobile Specific Fixes --- */
@media (max-width: 600px) {
  .quote-glass-box {
    padding: 40px 20px; /* Much smaller padding for small screens */
  }
  
  .quote-glass-box p.serif {
    font-size: 1.4rem !important; /* Shrink font size slightly on mobile */
  }

  .image-divider {
    height: min-content;
  }
}