
  .masthead {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    color: #fff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--gold);
  }

  .masthead .brand {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 15px;
    text-transform: uppercase;
  }

  .masthead .brand span {
    color: var(--gold-soft);
  }

  .masthead .tag {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-soft);
    opacity: 0.9;
  }

  .hero {
    position: relative;
    width: 100%;
    max-height: 560px;
    overflow: hidden;
  }

  .hero img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    filter: saturate(1.02);
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,32,63,0) 40%, rgba(5,32,63,0.88) 100%);
  }

 /* .hero-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px clamp(20px, 6vw, 80px) 26px;
    color: #fff;
    z-index: 2;
  }*/

  .kicker {
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy-deep);
    background: var(--gold);
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 14px;
    font-weight: 700;
  }

  h1 {
    font-family: 'Georgia', 'Noto Serif Thai', serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.25;
    margin: 0 0 10px 0;
    max-width: 900px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  }

  .byline {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    color: var(--gold-soft);
    letter-spacing: 0.5px;
  }

  main {
    max-width: 880px;
    margin: 0 auto;
    padding: 48px clamp(20px, 6vw, 40px) 24px;
  }

  .lede {
    font-size: 21px;
    color: var(--navy-deep);
    font-weight: 400;
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    margin: 0 0 32px 0;
  }

  article p {
    font-size: 17px;
    color: #2a3644;
    margin: 0 0 22px 0;
  }

  .divider {
    width: 64px;
    height: 3px;
    background: var(--gold);
    margin: 34px 0;
    border: none;
  }

  .pull-note1 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: var(--navy-deep);
    color: #fff;
    padding: 26px 28px;
    border-radius: 6px;
    margin: 38px 0;
  }

  .pull-note1 .label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 8px;
    display: block;
    font-weight: 700;
  }

  .pull-note1 p {
    color: #eef2f6;
    font-size: 16px;
    margin: 0;
    line-height: 1.65;
  }

  .gallery-heading {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: 700;
    border-bottom: 2px solid var(--line);
    padding-bottom: 12px;
    margin: 44px 0 22px 0;
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 10px;
  }

  .gallery figure {
    margin: 0;
    background: var(--card);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(11,61,110,0.10);
    border: 1px solid var(--line);
  }

  .gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  .gallery figcaption {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12.5px;
    color: var(--muted);
    padding: 10px 12px;
    line-height: 1.5;
  }

  .gallery .wide {
    grid-column: 1 / -1;
  }

  .gallery .wide img {
    height: 300px;
  }


  /*@media (max-width: 620px) {
    .gallery { grid-template-columns: 1fr; }
    .hero, .hero img { height: 420px; max-height: 420px; }
  }*/