/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #222;
  line-height: 1.7;
  padding: 0;
}

/* Header */
.site-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ccc;
}

.hero {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  padding: 25px;
  background: #fff;
}

.hero-text h1 {
  font-size: 32px;
  margin-bottom: 12px;
}

.hero-text p {
  font-size: 18px;
  color: #555;
}

/* Main Content */
.page-main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.story-content p {
  margin-bottom: 20px;
  font-size: 18px;
}

/* Section Title */
.story-content h2 {
  margin: 40px 0 20px;
  font-size: 26px;
  color: #333;
}

/* Photo Strip */
.photo-strip {
  margin-top: 50px;
}

.photo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 20px;
}

.photo-row figure {
  background: #fff;
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}

.photo-row img {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}

.photo-row figcaption {
  font-size: 14px;
  color: #444;
}
