/* ============================================================
   SHARED INNER-PAGE STYLES
============================================================ */

/* Offset body for fixed nav on inner pages */
.page-main {
  padding-top: var(--nav-h);
}

/* Page title block */
.page-title-wrap {
  padding: 40px 40px 32px;
  max-width: 1060px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--green);
  text-align: center;
  margin-bottom: 0;
}

/* ============================================================
   OUTDOOR GALLERY — stacked full-width images
============================================================ */
.gallery-stack {
  max-width: 860px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.gallery-stack figure {
  margin: 0 0 4px;
  line-height: 0;
}

.gallery-stack figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-top: 8px;
  padding-bottom: 64px;
}

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

.about-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 20px;
}

.about-text p:last-child { margin-bottom: 0; }

/* Fun facts */
.about-facts {
  padding-bottom: 72px;
  border-top: 1px solid #e8e8e8;
  padding-top: 56px;
}

.about-facts-heading {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 760px;
}

.facts-list {
  list-style: decimal;
  padding-left: 24px;
  max-width: 760px;
}

.facts-list li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 12px;
}

/* ============================================================
   BEFORE / AFTER PAGE
============================================================ */
.ba-intro {
  padding-top: 24px;
  padding-bottom: 48px;
}

.ba-intro p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
}

.ba-pairs {
  padding-bottom: 72px;
}

.ba-pair {
  display: block;
  width: 100%;
  margin-bottom: 24px;
}

.ba-img {
  display: block;
  width: 100%;
  position: relative;
  line-height: 0;
  margin-bottom: 4px;
}

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

.ba-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,.45);
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 1;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  .page-title-wrap { padding: 28px 20px 20px; }

  .gallery-stack { padding: 0 0; }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 48px;
  }

  .about-facts { padding-top: 40px; padding-bottom: 48px; }

  .ba-pair { grid-template-columns: 1fr; }

  .ba-img img { max-height: 420px; object-fit: cover; }
}
