 /* =========================
     Layout Containers
  ========================= */
  
  .home,
  #content,
  .portfolio-index,
  .portfolio-single {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
  }
  
  
  /* =========================
     Hero
  ========================= */
  
  .hero {
    padding: 4rem 3rem 3.5rem 3rem;
    background: #f6f6f4;
    margin-bottom: 1rem;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  
  .hero-image {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    filter: saturate(0.92) contrast(0.95);
  }
  
  .hero-text {
    position: static;
    max-width: 420px;
    margin-left: auto;
    margin-right: 0.5rem;
    margin-top: 1.5rem;
    text-align: right;
    transition: transform 0.2s ease;
  }
  
  .site-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    line-height: 1.6;
    color: #777;
  }

  .hero::after {
    content: "";
    display: block;
    width: 1px;
    height: 48px;
    background: rgba(0,0,0,0.12);
    margin: 2rem auto 0;
  }
  
  
  @media (max-width: 768px) {
    .hero {
        padding: 2rem 1.5rem 2.5rem;
    }

    .hero-image {
      height: 45vh;
    }

    .hero-text {
        max-width: none;
        margin-right: 0;
      }
  }

/* =========================
   Footer CTA (Top page)
========================= */

.footer-nav {
    max-width: 960px;
    margin: 4rem auto 3rem;
    padding: 0 1.5rem;
  }
  
  .footer-cta {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--accent);
    text-decoration: none;
    padding-left: 1.4rem;
    position: relative;
  }
  
  .footer-cta::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.6;
    transition: transform 0.25s ease; opacity: 0.25s ease;
  }

  .footer-cta::after {
    content: '';
    position: absolute;
    left: 1.4rem;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
    transition: width 0.25s ease;
  }
  
  /* hover */
    .footer-cta:hover::before {
    transform: translateX(4px);
    opacity: 1;
  }
  
  .footer-cta:hover::after {
    width: calc(100% - 1.4rem);
  }