       /* ── Reset & Base ── */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background: #FFFFFF; font-family: Georgia, serif; }

        /* ── Header ── */
        .site-header {
            margin: 0 10px;
            background: #224466;
            padding: 0 12px 0 12px;
        }
        .header-top {
            display: flex;
            align-items: flex-end;
            gap: 10px;
        }
        .header-top img {
            width: 50px;
            height: auto;
            flex-shrink: 0;
        }
        .site-title {
            flex: 1;
            text-align: center;
            color: #FFFFFF;
            font-size: clamp(1.6rem, 5vw, 2.6rem);
            font-style: italic;
        }

        /* ── Page label + last modified row ── */
        .header-meta {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding: 6px 0 4px 0;
            flex-wrap: wrap;
            gap: 4px;
        }
        .page-label {
            color: #AAAAAA;
            font-size: clamp(1.1rem, 4vw, 1.5rem);
            font-weight: bold;
        }
        .last-modified {
            color: #AAAAAA;
            font-size: 0.85rem;
            text-align: right;
        }
        .last-modified span { color: #AAAAAA; }

        /* ── Navigation ── */
        .site-nav {

            display: flex;
            background: #224466;
            margin-left: 10px;
            margin-right: 10px;
            margin-bottom: 0;
        }
        .site-nav a, .site-nav span {
            flex: 1;
            text-align: center;
            padding: 8px 4px;
            font-size: clamp(0.8rem, 3vw, 1rem);
            text-decoration: none;
            color: #BBBBBB;
        }
        .site-nav .nav-active {
            background: #335577;
            color: #FFFFFF;
        }

        /* ── Content area ── */
        .content-area {
            background: #FFFFFF;
            margin: 0 10px;
            padding: 16px;
            border-left: 4px solid #224466;
            border-right: 4px solid #224466;
            border-bottom: 4px solid #224466;
        }
        
        /* ── Hero section: photo + headline + call + copy ── */
        .hero {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            margin-left: 10px;
            margin-right: 10px;
            margin-bottom: 20px;
        }
        .hero-photo {
            width: 250px;
            min-width: 100px;
            flex-shrink: 0;
        }
        .hero-photo img {
            width: 100%;
            height: auto;
            display: block;
        }
        .hero-text {
            flex: 1;
        }
        .hero-text h1 {
            font-size: clamp(1.2rem, 4vw, 1.6rem);
            font-style: italic;
            text-align: center;
            margin-bottom: 10px;
        }
        .call-link {
            display: block;
            text-align: center;
            margin-bottom: 12px;
        }
        .call-link h2 {
            font-size: clamp(1rem, 3.5vw, 1.4rem);
            color: #224466;
        }
        .hero-copy {
            font-size: clamp(0.9rem, 2.8vw, 1rem);
            line-height: 1.5;
        }

        /* On small phones stack photo above text */
        @media (max-width: 420px) {
            .hero { flex-direction: column; align-items: center; }
            .hero-photo { width: 120px; }
            .hero-text h1 { margin-top: 8px; }
            .photo-card { flex: 0 0 100%; }
            
        }

       /* --- Photo area --- */
       
       /* OPTION 1 — If you control the HTML: restructure into flex cards */

.photo-grid {
  background: #224466;
  margin: 0 10px;
  display: flex;
  flex-wrap: wrap;          /* wraps to next line on small screens */
  gap: 12px;
  align-items: flex-start;
}

.photo-card {
  background: #224466;
  display: flex;
  flex-direction: column;   /* label on top, photo below — always together */
  flex: 1 1 200px;          /* grow/shrink, min 200px before wrapping */
  overflow: hidden;
  border: 2px solid #224466;
  border-radius: 4px;
}

.photo-card .label {
  background: #224466;
  text-align: center;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 6px;
}

.photo-card img {
  width: 100%;
  height: auto;
  display: block;
}


      /* ── Footer ── */
.site-footer {
   background: #FFFFFF;
   text-align: right;
   padding: 8px 12px;
   font-size: 0.78rem;
   font-style: italic;
   border-top: 1px solid #DDDDDD;
        }
