.page-hero {
      min-height: 52vh;
      padding: 140px 2rem 70px;
      background: linear-gradient(rgba(10,8,6,0.55), rgba(10,8,6,0.7)), url('../images/Gs_BrickBG001.jpg') center/cover no-repeat;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .page-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 7vw, 5rem);
      font-style: italic;
      font-weight: 700;
      color: var(--cream);
      line-height: 1.1;
      letter-spacing: 0;
      margin-bottom: 0.6rem;
    }
    .page-hero p {
      max-width: 760px;
      font-family: var(--font-fell);
      font-style: italic;
      font-size: 1.1rem;
      color: var(--parchment);
      opacity: 0.6;
    }

    .content-wrap {
      max-width: 1000px;
      margin: 0 auto;
      padding: 3rem 1.2rem 4rem;
    }
    .story-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 2rem;
      align-items: stretch;
    }
    .card {
      background: #17130f;
      border: 1px solid rgba(200,162,80,.18);
      border-radius: 10px;
      padding: 1.35rem 1.2rem;
    }
    h2 {
      font-family: var(--font-display);
      color: var(--gold-light);
      margin-bottom: .7rem;
      font-size: 1.8rem;
    }
    .timeline li { margin: 0.5rem 0; }
    .timeline strong { color: var(--gold-light); }

    .story-grid .card { display: flex; flex-direction: column; }
    .article-photo-wrap {
      border-radius: 8px;
      overflow: hidden;
      margin-top: auto;
      padding-top: 1rem;
      cursor: pointer;
      flex: 1;
      min-height: 0;
    }
    .article-photo {
      width: 100%;
      height: 100%;
      display: block;
      border-radius: 8px;
      object-fit: cover;
      object-position: top;
    }

    .family-photo-wrap {
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 1rem;
      cursor: pointer;
    }
    .family-photo {
      width: 100%;
      display: block;
    }

    /* Family photo lightbox */
    .family-lightbox-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,.9);
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
      visibility: hidden;
      opacity: 0;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      -webkit-tap-highlight-color: transparent;
    }
    .family-lightbox-overlay.active {
      visibility: visible;
      opacity: 1;
    }
    .family-lightbox-inner {
      position: relative;
      max-width: 90vw;
      max-height: 85vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .family-lightbox-inner img {
      max-width: 90vw;
      max-height: 80vh;
      width: auto;
      height: auto;
      border-radius: 6px;
      box-shadow: 0 4px 40px rgba(0,0,0,.6);
    }
    .family-lightbox-close {
      position: absolute;
      top: -2rem;
      right: -0.5rem;
      background: none;
      border: none;
      color: var(--parchment);
      font-size: 2rem;
      cursor: pointer;
      line-height: 1;
      opacity: 0.8;
    }
    .family-lightbox-close:hover { opacity: 1; }
    .family-lightbox-prev,
    .family-lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,.5);
      border: 1px solid rgba(200,162,80,.3);
      color: var(--parchment);
      font-size: 2rem;
      padding: 0.3rem 0.7rem;
      cursor: pointer;
      border-radius: 4px;
      line-height: 1;
    }
    .family-lightbox-prev { left: -3.5rem; }
    .family-lightbox-next { right: -3.5rem; }
    .family-lightbox-prev:hover,
    .family-lightbox-next:hover { background: rgba(0,0,0,.8); }
    .family-lightbox-counter {
      position: absolute;
      bottom: -2rem;
      left: 50%;
      transform: translateX(-50%);
      color: var(--parchment);
      font-family: var(--font-display);
      font-size: 0.9rem;
      opacity: 0.7;
    }

    .josie-tribute {
      text-align: center;
      max-width: 720px;
      margin: 2.5rem auto 0;
      padding: 2rem 1.2rem 1.5rem;
    }
    .tribute-rule {
      width: 60px;
      height: 1px;
      background: var(--gold-dim);
      margin: 0 auto 1.6rem;
      opacity: 0.5;
    }
    .josie-photo {
      width: 180px;
      height: 180px;
      max-width: 50vw;
      max-height: 50vw;
      object-fit: cover;
      object-position: top;
      border-radius: 50%;
      border: 2px solid rgba(200,162,80,.25);
      margin-bottom: 1.4rem;
      opacity: 0.9;
    }
    .josie-tribute h2 {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 1.6rem;
      color: var(--gold-light);
      margin-bottom: 1rem;
      font-weight: 400;
    }
    .josie-tribute p {
      font-family: var(--font-body);
      font-size: 1.08rem;
      line-height: 1.75;
      color: var(--parchment);
      opacity: 0.85;
    }
    .tribute-dates {
      margin-top: 1.2rem;
      font-family: var(--font-display);
      font-style: italic;
      font-size: 0.95rem;
      color: var(--gold-dim);
      letter-spacing: 0.04em;
      opacity: 0.7 !important;
    }

    .lightbox-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,.85);
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      visibility: hidden;
      opacity: 0;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      -webkit-tap-highlight-color: transparent;
    }
    .lightbox-overlay.active {
      visibility: visible;
      opacity: 1;
    }
    .lightbox-overlay img {
      max-width: 90vw;
      max-height: 85vh;
      width: auto;
      height: auto;
      border-radius: 6px;
      box-shadow: 0 4px 40px rgba(0,0,0,.6);
    }

    @media (max-width: 900px) {
      .story-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .card { padding: 1.35rem 1.1rem; }
      .timeline {
        margin: 0;
        padding-left: 1.4rem;
      }
      .timeline li {
        padding-left: 0.1rem;
      }
      .family-lightbox-prev { left: 0.5rem; }
      .family-lightbox-next { right: 0.5rem; }
    }
