@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --green-dark: #1a3d1f;
  --green-mid: #2d6a35;
  --green-bright: #3e8e48;
  --green-light: #6ab87a;
  --green-pale: #d4edda;
  --green-mist: #f0f7f1;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --cream: #fafdf8;
  --text-dark: #1a2a1c;
  --text-mid: #3d5240;
  --text-light: #6b8a70;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 61, 31, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--green-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links a {
  display: block;
  padding: 0 1.1rem;
  height: 70px;
  line-height: 70px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--green-dark) 0%, #1e4d26 40%, #2d6a35 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a9455' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--gold);
  display: block;
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  padding: 14px 32px;
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,0.4);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--gold);
  padding: 1.8rem 1.5rem;
  backdrop-filter: blur(5px);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 120px 2rem 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a9455' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-header-eyebrow {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 1rem;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  font-weight: 300;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 2rem;
}

.section-alt {
  background: var(--green-mist);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  color: var(--green-bright);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.8rem;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-light);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* ===== CARDS ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-top: 4px solid var(--green-bright);
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45,106,53,0.12);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.7rem;
}

.card p {
  color: var(--text-mid);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: var(--green-dark);
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
}

.highlight-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.highlight-box p {
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

/* ===== TEAM / PROFILE ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  background: var(--white);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.07);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: var(--green-pale);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 3px solid var(--green-light);
}

.team-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}

.team-card .role {
  font-size: 0.78rem;
  color: var(--green-bright);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-bright), var(--green-light));
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.3rem;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--green-bright);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 0.3rem;
}

.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.timeline-text {
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 300;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info-item h4 {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-bright);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.contact-info-item p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.07);
  border-top: 4px solid var(--green-bright);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  background: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-bright);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.footer-brand-sub {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  font-weight: 300;
}

footer h4 {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.6rem;
}

footer ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

footer ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ===== ACTIVITIES PAGE ===== */
.activity-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45,106,53,0.12);
}

.activity-img {
  height: 180px;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.activity-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
}

.activity-body {
  padding: 1.5rem;
}

.activity-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 0.8rem;
}

.activity-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.activity-body p {
  color: var(--text-mid);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ===== KRA REPORT SECTION ===== */
.report-highlight {
  background: linear-gradient(135deg, var(--green-dark), #2a5a32);
  padding: 3rem;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.report-highlight h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.report-highlight p {
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.report-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.report-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem;
  text-align: center;
}

.report-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}

.report-stat .lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== PARTNER LOGOS ===== */
.partner-strip {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.07);
}

.partner-badge {
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  padding: 0.7rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-dark);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 12px 2rem;
  font-size: 0.82rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--green-bright);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content, .grid-3, .team-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .grid-2 { grid-template-columns: 1fr; }
  .report-highlight { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    border-top: 2px solid var(--gold);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    height: auto;
    line-height: 1;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-hamburger { display: flex; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* ===== PHOTO COMPONENTS ===== */

/* Photo frame with caption */
.photo-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26,61,31,0.25);
}
.photo-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.photo-caption {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  padding: 0.7rem 1rem;
  font-style: italic;
  letter-spacing: 0.3px;
}

/* Gallery strip (horizontal scroll of photos) */
.gallery-strip {
  overflow: hidden;
  background: var(--green-dark);
  padding: 0;
}
.gallery-strip-inner {
  display: flex;
  gap: 4px;
}
.gallery-strip-inner img {
  flex: 1;
  min-width: 200px;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.3s, transform 0.3s;
}
.gallery-strip-inner img:hover {
  filter: brightness(1);
  transform: scale(1.03);
  z-index: 1;
}

/* Full-width photo divider */
.photo-divider {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}
.photo-divider-overlay {
  background: rgba(26, 61, 31, 0.75);
  display: inline-block;
  padding: 2rem 3rem;
  border-radius: 8px;
  max-width: 700px;
}
.photo-divider blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.photo-divider cite {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* Photo grid 3 — cards with bottom captions */
.photo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.photo-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(26,61,31,0.15);
  background: var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
}
.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(26,61,31,0.22);
}
.photo-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.photo-card-tall img {
  height: 320px;
}
.photo-card-info {
  padding: 1rem 1.2rem;
}
.photo-card-info h4 {
  font-family: 'Playfair Display', serif;
  color: var(--green-dark);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.photo-card-info p {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* Masonry gallery */
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}
.masonry-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.masonry-item.masonry-wide {
  grid-column: span 2;
}
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.masonry-item:hover img {
  transform: scale(1.05);
}
.masonry-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,61,31,0.85));
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  padding: 1.5rem 0.8rem 0.6rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.masonry-item:hover .masonry-caption {
  transform: translateY(0);
}

/* Hero with photo background */
.hero-photo {
  background-size: cover !important;
  background-position: center !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .photo-grid-3 {
    grid-template-columns: 1fr;
  }
  .masonry-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .masonry-item.masonry-wide {
    grid-column: span 2;
  }
  .gallery-strip-inner img {
    height: 150px;
    min-width: 120px;
  }
  .photo-frame img {
    height: 260px;
  }
  .photo-divider blockquote {
    font-size: 1.15rem;
  }
}
