.opr-page,
.opr-page * {
  box-sizing: border-box;
}

.opr-page {
  --opr-dark: #064d2d;
  --opr-green: #147d3f;
  --opr-text: #173d29;
  --opr-muted: #4f6657;
  color: var(--opr-text);
  background: linear-gradient(180deg, #c6f5c6 0%, #c0fbe0 100%);
  padding: 28px 18px 60px;
}

.opr-shell {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.opr-hero {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(6, 77, 45, .18);
  border-radius: 22px;
  background: linear-gradient(135deg, #e4f8df 0%, #d8f2df 100%);
  box-shadow: 0 14px 36px rgba(12, 73, 39, .12);
  text-align: center;
}

.opr-logo {
  width: min(260px, 70vw);
  margin: 0 auto 24px;
}

.opr-logo video,
.opr-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.opr-hero h1,
.opr-section h2 {
  color: var(--opr-dark);
  font-family: Georgia, "Times New Roman", serif;
}

.opr-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.opr-intro {
  max-width: 860px;
  margin: 22px auto 0;
  color: #244b35;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.62;
}

.opr-intro p,
.opr-richtext p {
  margin: 0 0 1em;
}

.opr-intro p:last-child,
.opr-richtext p:last-child {
  margin-bottom: 0;
}

.opr-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  margin-top: 34px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(6, 77, 45, .16);
  border-radius: 20px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 28px rgba(12, 73, 39, .09);
}

.opr-section-reverse .opr-section-copy {
  grid-column: 2;
  grid-row: 1;
}

.opr-section-reverse .opr-image-area {
  grid-column: 1;
  grid-row: 1;
}

.opr-section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.opr-richtext {
  color: var(--opr-muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.opr-richtext a,
.opr-place-list a {
  color: var(--opr-green);
  font-weight: 700;
}

.opr-image-area {
  min-width: 0;
}

.opr-figure {
  margin: 0;
}

.opr-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  border: 8px solid #fff;
  border-radius: 18px;
  background: #eef7ea;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .16);
}

.opr-figure figcaption {
  margin-top: 9px;
  color: var(--opr-muted);
  font-size: .92rem;
  line-height: 1.45;
  text-align: center;
}

.opr-places {
  grid-template-columns: 1fr;
  align-items: start;
}

.opr-place-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.opr-place-card {
  min-width: 0;
  padding: 15px;
  border: 1px solid #b9d7b8;
  border-radius: 14px;
  background: #f5fbf1;
  line-height: 1.35;
}

.opr-place-figure {
  margin: 0 0 14px;
}

.opr-place-photo-link {
  display: block;
  width: 100%;
}

.opr-place-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.opr-place-figure figcaption {
  margin-top: 8px;
  color: var(--opr-muted);
  font-size: .9rem;
  line-height: 1.45;
}

.opr-place-card h3 {
  margin: 0 0 10px;
  color: var(--opr-dark);
  font-size: 1.15rem;
}

.opr-place-text-link {
  display: inline-block;
  color: var(--opr-green);
  font-weight: 700;
  text-decoration: none;
}

.opr-place-photo-link:focus-visible,
.opr-place-text-link:hover,
.opr-place-text-link:focus-visible {
  text-decoration: underline;
}

.opr-culture-images {
  position: relative;
  min-height: 440px;
}

.opr-culture-images .opr-figure {
  position: absolute;
  width: 68%;
}

.opr-culture-images .opr-figure img {
  max-height: 245px;
}

.opr-culture-images .opr-figure:nth-child(1) {
  top: 0;
  right: 0;
  transform: rotate(3deg);
  z-index: 1;
}

.opr-culture-images .opr-figure:nth-child(2) {
  top: 130px;
  left: 0;
  transform: rotate(-4deg);
  z-index: 2;
}

.opr-culture-images .opr-figure:nth-child(3) {
  right: 8%;
  bottom: 0;
  transform: rotate(2deg);
  z-index: 3;
}

@media (max-width: 900px) {
  .opr-section,
  .opr-section-reverse {
    grid-template-columns: 1fr;
  }

  .opr-section-reverse .opr-section-copy,
  .opr-section-reverse .opr-image-area {
    grid-column: auto;
    grid-row: auto;
  }

  .opr-section-reverse .opr-image-area {
    order: -1;
  }

  .opr-place-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .opr-page {
    padding-right: 12px;
    padding-left: 12px;
  }

  .opr-hero,
  .opr-section {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .opr-place-list {
    grid-template-columns: 1fr;
  }

  .opr-culture-images {
    display: grid;
    min-height: 0;
    gap: 18px;
  }

  .opr-culture-images .opr-figure {
    position: static;
    width: 100%;
    transform: none !important;
  }

  .opr-culture-images .opr-figure img,
  .opr-figure img {
    max-height: none;
  }
}
